about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tuntap
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-24 07:15:21 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-24 19:02:48 +0000
commit9493ced9f7b03d7c5868c2f0442f9d91f232c226 (patch)
tree7c658aade04ed0233b96baf7b9bcbacfe8d4b2aa /pkgs/development/ocaml-modules/tuntap
parent71739f348e5d1e277d737f990b4836d119d149f4 (diff)
downloadnixlib-9493ced9f7b03d7c5868c2f0442f9d91f232c226.tar
nixlib-9493ced9f7b03d7c5868c2f0442f9d91f232c226.tar.gz
nixlib-9493ced9f7b03d7c5868c2f0442f9d91f232c226.tar.bz2
nixlib-9493ced9f7b03d7c5868c2f0442f9d91f232c226.tar.lz
nixlib-9493ced9f7b03d7c5868c2f0442f9d91f232c226.tar.xz
nixlib-9493ced9f7b03d7c5868c2f0442f9d91f232c226.tar.zst
nixlib-9493ced9f7b03d7c5868c2f0442f9d91f232c226.zip
ocamlPackages.{ojquery,tuntap,uri}: adds ocamlbuild as dependency
Diffstat (limited to 'pkgs/development/ocaml-modules/tuntap')
-rw-r--r--pkgs/development/ocaml-modules/tuntap/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/tuntap/default.nix b/pkgs/development/ocaml-modules/tuntap/default.nix
index de520c643fe2..3a3e90c9d0fa 100644
--- a/pkgs/development/ocaml-modules/tuntap/default.nix
+++ b/pkgs/development/ocaml-modules/tuntap/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchzip, ocaml, findlib, ipaddr }:
+{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, ipaddr }:
 
 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
 
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
     sha256 = "1cmd4kky875ks02gm2nb8yr80hmlfcnjdfyc63hvkh49acssy3d5";
   };
 
-  buildInputs = [ ocaml findlib ];
+  buildInputs = [ ocaml findlib ocamlbuild ];
   propagatedBuildInputs = [ ipaddr ];
 
   createFindlibDestdir = true;