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>2015-01-03 18:33:20 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-01-06 11:05:30 +0100
commit8bc331469991cf1cebaa45ca1234e456da43c21b (patch)
treeaba4643e5bcd208cd23e25fb17dcc285647174cd /pkgs/development/ocaml-modules/lambda-term
parentaf9bb718486bc0941baf41893a81ad1411e8e9f9 (diff)
downloadnixpkgs-8bc331469991cf1cebaa45ca1234e456da43c21b.tar
nixpkgs-8bc331469991cf1cebaa45ca1234e456da43c21b.tar.gz
nixpkgs-8bc331469991cf1cebaa45ca1234e456da43c21b.tar.bz2
nixpkgs-8bc331469991cf1cebaa45ca1234e456da43c21b.tar.lz
nixpkgs-8bc331469991cf1cebaa45ca1234e456da43c21b.tar.xz
nixpkgs-8bc331469991cf1cebaa45ca1234e456da43c21b.tar.zst
nixpkgs-8bc331469991cf1cebaa45ca1234e456da43c21b.zip
ocaml-lambda-term: adds dependency to camlp4
Diffstat (limited to 'pkgs/development/ocaml-modules/lambda-term')
-rw-r--r--pkgs/development/ocaml-modules/lambda-term/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/lambda-term/default.nix b/pkgs/development/ocaml-modules/lambda-term/default.nix
index b6edadb0b14..1baea569dbd 100644
--- a/pkgs/development/ocaml-modules/lambda-term/default.nix
+++ b/pkgs/development/ocaml-modules/lambda-term/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed}:
+{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed, camlp4 }:
 
 stdenv.mkDerivation rec {
   version = "1.6";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ libev ocaml findlib ocaml_lwt ocaml_react ];
 
-  propagatedBuildInputs = [ zed ];
+  propagatedBuildInputs = [ camlp4 zed ];
 
   createFindlibDestdir = true;