summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lambda-term
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-06-06 13:08:43 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-06-06 19:13:18 +0200
commit354e58927588f39c1b1cbd572ee46b98eb2c47fa (patch)
tree931876d3e09ea37b48f0bd4af1f19985f694270b /pkgs/development/ocaml-modules/lambda-term
parent628cd6f83a2130d133bd153c149a7bb2fc90beaa (diff)
downloadnixpkgs-354e58927588f39c1b1cbd572ee46b98eb2c47fa.tar
nixpkgs-354e58927588f39c1b1cbd572ee46b98eb2c47fa.tar.gz
nixpkgs-354e58927588f39c1b1cbd572ee46b98eb2c47fa.tar.bz2
nixpkgs-354e58927588f39c1b1cbd572ee46b98eb2c47fa.tar.lz
nixpkgs-354e58927588f39c1b1cbd572ee46b98eb2c47fa.tar.xz
nixpkgs-354e58927588f39c1b1cbd572ee46b98eb2c47fa.tar.zst
nixpkgs-354e58927588f39c1b1cbd572ee46b98eb2c47fa.zip
lambda-term: 1.8 -> 1.10
Diffstat (limited to 'pkgs/development/ocaml-modules/lambda-term')
-rw-r--r--pkgs/development/ocaml-modules/lambda-term/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/lambda-term/default.nix b/pkgs/development/ocaml-modules/lambda-term/default.nix
index ec9232645e7..60afad57b57 100644
--- a/pkgs/development/ocaml-modules/lambda-term/default.nix
+++ b/pkgs/development/ocaml-modules/lambda-term/default.nix
@@ -1,19 +1,19 @@
-{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed, camlp4 }:
+{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed }:
 
 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
 
 stdenv.mkDerivation rec {
-  version = "1.8";
+  version = "1.10";
   name = "lambda-term-${version}";
 
   src = fetchurl {
-    url = https://github.com/diml/lambda-term/archive/1.8.tar.gz;
-    sha256 = "0hy11x48q5bbh9czjp0w756cyxzr2c6qcnfm5n9f0i1l4qljwpgc";
+    url = "https://github.com/diml/lambda-term/archive/${version}.tar.gz";
+    sha256 = "1kwpsqds51xmy3z3ddkam92hkl7arlzy9awhzsq62ysxcl91fb8m";
   };
 
   buildInputs = [ libev ocaml findlib ocaml_react ];
 
-  propagatedBuildInputs = [ camlp4 zed ocaml_lwt ];
+  propagatedBuildInputs = [ zed ocaml_lwt ];
 
   createFindlibDestdir = true;