about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2015-02-01 20:03:45 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-02-02 15:43:42 +0100
commit7ee3e777c3c88e4631b653338a7e1d9db108ae5a (patch)
tree0d51f0ee0f6c70c49e566503232071061655d934 /pkgs/development/ocaml-modules
parent9d5bde2eedab78c1dfff34a0f3ad7fd6e1fc8f71 (diff)
downloadnixlib-7ee3e777c3c88e4631b653338a7e1d9db108ae5a.tar
nixlib-7ee3e777c3c88e4631b653338a7e1d9db108ae5a.tar.gz
nixlib-7ee3e777c3c88e4631b653338a7e1d9db108ae5a.tar.bz2
nixlib-7ee3e777c3c88e4631b653338a7e1d9db108ae5a.tar.lz
nixlib-7ee3e777c3c88e4631b653338a7e1d9db108ae5a.tar.xz
nixlib-7ee3e777c3c88e4631b653338a7e1d9db108ae5a.tar.zst
nixlib-7ee3e777c3c88e4631b653338a7e1d9db108ae5a.zip
ocaml-zed: update from 1.3 to 1.4
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/zed/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/zed/default.nix b/pkgs/development/ocaml-modules/zed/default.nix
index 3c2fae472bec..935d3a566486 100644
--- a/pkgs/development/ocaml-modules/zed/default.nix
+++ b/pkgs/development/ocaml-modules/zed/default.nix
@@ -1,15 +1,15 @@
-{stdenv, fetchurl, ocaml, findlib, camomile, ocaml_react}:
+{ stdenv, fetchzip, ocaml, findlib, camomile, ocaml_react }:
 
 stdenv.mkDerivation rec {
-  version = "1.3";
+  version = "1.4";
   name = "ocaml-zed-${version}";
 
-  src = fetchurl {
-    url = https://github.com/diml/zed/archive/1.3.tar.gz;
-    sha256 = "1fr9xzf5msdnl2wx279aqj051nqbhs6v9aq1mfpv3r1mrqvrrfwj";
+  src = fetchzip {
+    url = "https://github.com/diml/zed/archive/${version}.tar.gz";
+    sha256 = "0d8qfy0qiydrrqi8qc9rcwgjigql6vx9gl4zp62jfz1lmjgb2a3w";
   };
 
-  buildInputs = [ ocaml findlib ocaml_react];
+  buildInputs = [ ocaml findlib ocaml_react ];
 
   propagatedBuildInputs = [ camomile ];