about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-06-24 06:18:09 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2018-06-28 07:16:49 +0000
commit1747ec308aaf1c196a5e8941780b8e64c30059c8 (patch)
treec399aa7f3009ccfd24c95055703d16736af9b7dc /pkgs/development/ocaml-modules
parent7261a66d713aabf30249535bfa53e5d205c4423e (diff)
downloadnixlib-1747ec308aaf1c196a5e8941780b8e64c30059c8.tar
nixlib-1747ec308aaf1c196a5e8941780b8e64c30059c8.tar.gz
nixlib-1747ec308aaf1c196a5e8941780b8e64c30059c8.tar.bz2
nixlib-1747ec308aaf1c196a5e8941780b8e64c30059c8.tar.lz
nixlib-1747ec308aaf1c196a5e8941780b8e64c30059c8.tar.xz
nixlib-1747ec308aaf1c196a5e8941780b8e64c30059c8.tar.zst
nixlib-1747ec308aaf1c196a5e8941780b8e64c30059c8.zip
ocamlPackages.lambdaTerm: remove spurious dependency to camlp4
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/lambda-term/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/lambda-term/default.nix b/pkgs/development/ocaml-modules/lambda-term/default.nix
index fdd30d28ed89..c1e268f686b0 100644
--- a/pkgs/development/ocaml-modules/lambda-term/default.nix
+++ b/pkgs/development/ocaml-modules/lambda-term/default.nix
@@ -1,10 +1,10 @@
-{ stdenv, buildOcaml, fetchurl, libev, ocaml, findlib, jbuilder, zed, lwt_react }:
+{ stdenv, fetchurl, libev, ocaml, findlib, jbuilder, zed, lwt_react }:
 
 assert stdenv.lib.versionAtLeast ocaml.version "4.02";
 
-buildOcaml rec {
+stdenv.mkDerivation rec {
   version = "1.12.0";
-  name = "lambda-term";
+  name = "ocaml${ocaml.version}-lambda-term-${version}";
 
   src = fetchurl {
     url = "https://github.com/diml/lambda-term/archive/${version}.tar.gz";