about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-03-07 10:21:37 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2020-03-08 18:09:22 +0100
commit5e468ef98191e2a68a2975b737a697d3f1cb5f9d (patch)
tree7cf162aa6000f466a0e15077bc70321ce3174386 /pkgs/development/tools/ocaml
parent84f862ed9142a773cd9491b68d56a956afe154be (diff)
downloadnixlib-5e468ef98191e2a68a2975b737a697d3f1cb5f9d.tar
nixlib-5e468ef98191e2a68a2975b737a697d3f1cb5f9d.tar.gz
nixlib-5e468ef98191e2a68a2975b737a697d3f1cb5f9d.tar.bz2
nixlib-5e468ef98191e2a68a2975b737a697d3f1cb5f9d.tar.lz
nixlib-5e468ef98191e2a68a2975b737a697d3f1cb5f9d.tar.xz
nixlib-5e468ef98191e2a68a2975b737a697d3f1cb5f9d.tar.zst
nixlib-5e468ef98191e2a68a2975b737a697d3f1cb5f9d.zip
ocsigen-i18n: 3.4.0 → 3.5.0
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/ocsigen-i18n/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/tools/ocaml/ocsigen-i18n/default.nix b/pkgs/development/tools/ocaml/ocsigen-i18n/default.nix
index 09ab9587ddba..5144af97f759 100644
--- a/pkgs/development/tools/ocaml/ocsigen-i18n/default.nix
+++ b/pkgs/development/tools/ocaml/ocsigen-i18n/default.nix
@@ -1,12 +1,11 @@
-{ stdenv, fetchurl, ocamlPackages }:
+{ stdenv, fetchzip, ocamlPackages }:
 
 stdenv.mkDerivation rec
 {
   pname = "ocsigen-i18n";
-  version = "3.4.0";
-
-  buildInputs = with ocamlPackages; [ ocaml findlib ];
+  version = "3.5.0";
 
+  buildInputs = with ocamlPackages; [ ocaml findlib ppx_tools ];
 
   dontStrip = true;
 
@@ -15,9 +14,9 @@ stdenv.mkDerivation rec
     make bindir=$out/bin install
   '';
 
-  src = fetchurl {
+  src = fetchzip {
     url = "https://github.com/besport/${pname}/archive/${version}.tar.gz";
-    sha256 = "0i7cck6zlgwjpksb4s1jpy193h85jixf4d0nmqj09y3zcpn2i8gb";
+    sha256 = "1qsgwfl64b53w235wm7nnchqinzgsvd2gb52xm0kra2wlwp69rfq";
   };
 
   meta = {