summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-11-08 04:38:26 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-11-08 08:22:20 +0100
commite3644f240155a0bd9d8c5f434cd3160d9613e0ee (patch)
tree9188d0fe0364c94de796f29c590e9679104198c9 /pkgs
parent7438e3d97d030ab2f1711ab2ab6aa92d3f8a3f23 (diff)
downloadnixpkgs-e3644f240155a0bd9d8c5f434cd3160d9613e0ee.tar
nixpkgs-e3644f240155a0bd9d8c5f434cd3160d9613e0ee.tar.gz
nixpkgs-e3644f240155a0bd9d8c5f434cd3160d9613e0ee.tar.bz2
nixpkgs-e3644f240155a0bd9d8c5f434cd3160d9613e0ee.tar.lz
nixpkgs-e3644f240155a0bd9d8c5f434cd3160d9613e0ee.tar.xz
nixpkgs-e3644f240155a0bd9d8c5f434cd3160d9613e0ee.tar.zst
nixpkgs-e3644f240155a0bd9d8c5f434cd3160d9613e0ee.zip
ocamlPackages.fieldslib_p4: add ocamlbuild dependency
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/fieldslib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/fieldslib/default.nix b/pkgs/development/ocaml-modules/fieldslib/default.nix
index bbefcc0f3cc..6a8db9e6281 100644
--- a/pkgs/development/ocaml-modules/fieldslib/default.nix
+++ b/pkgs/development/ocaml-modules/fieldslib/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ocaml, findlib, type_conv, camlp4 }:
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, type_conv, camlp4 }:
 
 assert stdenv.lib.versionOlder "4.00" (stdenv.lib.getVersion ocaml);
 
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
     sha256 = "1dkzk0wf26rhvji80dz1r56dp6x9zqrnp87wldd4pj56jli94vir";
   };
 
-  buildInputs = [ ocaml findlib ];
+  buildInputs = [ ocaml findlib ocamlbuild ];
   propagatedBuildInputs = [ type_conv camlp4 ];
 
   createFindlibDestdir = true;