summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2015-04-04 20:18:28 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-04-06 10:14:48 +0200
commit8553d212c700ff7be614c50f553b20c7abdd114e (patch)
treefd42485b213ecb9139c006f8b8b78cb802738842
parent05a9e34f8a28870fb158650446a61990c9c7b5d5 (diff)
downloadnixlib-8553d212c700ff7be614c50f553b20c7abdd114e.tar
nixlib-8553d212c700ff7be614c50f553b20c7abdd114e.tar.gz
nixlib-8553d212c700ff7be614c50f553b20c7abdd114e.tar.bz2
nixlib-8553d212c700ff7be614c50f553b20c7abdd114e.tar.lz
nixlib-8553d212c700ff7be614c50f553b20c7abdd114e.tar.xz
nixlib-8553d212c700ff7be614c50f553b20c7abdd114e.tar.zst
nixlib-8553d212c700ff7be614c50f553b20c7abdd114e.zip
ocaml-stringext: update from 1.2.0 to 1.3.0
-rw-r--r--pkgs/development/ocaml-modules/stringext/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/stringext/default.nix b/pkgs/development/ocaml-modules/stringext/default.nix
index dde2b0ebe45c..dae947035d25 100644
--- a/pkgs/development/ocaml-modules/stringext/default.nix
+++ b/pkgs/development/ocaml-modules/stringext/default.nix
@@ -1,14 +1,13 @@
-{ stdenv, fetchgit, ocaml, findlib }:
+{ stdenv, fetchzip, ocaml, findlib }:
 
-let version = "1.2.0"; in
+let version = "1.3.0"; in
 
 stdenv.mkDerivation {
   name = "ocaml-stringext-${version}";
 
-  src = fetchgit {
-    url = https://github.com/rgrinberg/stringext.git;
-    rev = "refs/tags/v${version}";
-    sha256 = "04ixh33225n2fyc0i35pk7h9shxfdg9grhvkxy086zppki3a3vc6";
+  src = fetchzip {
+    url = "https://github.com/rgrinberg/stringext/archive/v${version}.tar.gz";
+    sha256 = "0sd1chyxclmip0nxqhasp1ri91bwxr8nszkkr5kpja45f6bav6k9";
   };
 
   buildInputs = [ ocaml findlib ];