about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/twt
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2015-10-04 01:17:33 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-10-04 01:17:33 +0200
commit2702f01ee91b264e623ed762c34f3f2d390b3987 (patch)
tree226f4db965098391e42fda16b5c013d1b738d501 /pkgs/development/ocaml-modules/twt
parent85eb69ec5c4e815352d79e7d1fea82802b384912 (diff)
downloadnixlib-2702f01ee91b264e623ed762c34f3f2d390b3987.tar
nixlib-2702f01ee91b264e623ed762c34f3f2d390b3987.tar.gz
nixlib-2702f01ee91b264e623ed762c34f3f2d390b3987.tar.bz2
nixlib-2702f01ee91b264e623ed762c34f3f2d390b3987.tar.lz
nixlib-2702f01ee91b264e623ed762c34f3f2d390b3987.tar.xz
nixlib-2702f01ee91b264e623ed762c34f3f2d390b3987.tar.zst
nixlib-2702f01ee91b264e623ed762c34f3f2d390b3987.zip
ocaml-twt: 0.93.2 -> 0.94.0
Diffstat (limited to 'pkgs/development/ocaml-modules/twt')
-rw-r--r--pkgs/development/ocaml-modules/twt/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/twt/default.nix b/pkgs/development/ocaml-modules/twt/default.nix
index 0dc7170552ce..4ddbc6705a57 100644
--- a/pkgs/development/ocaml-modules/twt/default.nix
+++ b/pkgs/development/ocaml-modules/twt/default.nix
@@ -1,11 +1,11 @@
-{stdenv, fetchurl, ocaml, findlib }:
+{ stdenv, fetchzip, ocaml, findlib }:
 
 stdenv.mkDerivation {
-  name = "ocaml-twt-0.93.2";
+  name = "ocaml-twt-0.94.0";
 
-  src = fetchurl {
-    url = https://github.com/mlin/twt/archive/v0.93.2.tar.gz;
-    sha256 = "aec091fbd1e6c4d252cf9664237418b4bc8c7d6b7a17475589be78365397e768";
+  src = fetchzip {
+    url = https://github.com/mlin/twt/archive/v0.94.0.tar.gz;
+    sha256 = "0298gdgzl4cifxnc1d8sbrvz1lkiq5r5ifkq1fparm6gvqywpf65";
   };
 
   buildInputs = [ ocaml findlib ];