summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/optcomp
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-11-09 01:46:53 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-11-09 01:49:37 +0000
commitcac51e4e09f74820c6be0d2e7da546e13a638e0b (patch)
tree7bf1b63718df5a870c33ec0c6ce17bfbb61f5fa3 /pkgs/development/ocaml-modules/optcomp
parentff86c33f1d0c13fb425f1fdac48bfa89a74d63b7 (diff)
downloadnixlib-cac51e4e09f74820c6be0d2e7da546e13a638e0b.tar
nixlib-cac51e4e09f74820c6be0d2e7da546e13a638e0b.tar.gz
nixlib-cac51e4e09f74820c6be0d2e7da546e13a638e0b.tar.bz2
nixlib-cac51e4e09f74820c6be0d2e7da546e13a638e0b.tar.lz
nixlib-cac51e4e09f74820c6be0d2e7da546e13a638e0b.tar.xz
nixlib-cac51e4e09f74820c6be0d2e7da546e13a638e0b.tar.zst
nixlib-cac51e4e09f74820c6be0d2e7da546e13a638e0b.zip
ocaml-optcomp: adds dependency to camlp4
Diffstat (limited to 'pkgs/development/ocaml-modules/optcomp')
-rw-r--r--pkgs/development/ocaml-modules/optcomp/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/optcomp/default.nix b/pkgs/development/ocaml-modules/optcomp/default.nix
index 6075bc4ab2aa..4449766767cb 100644
--- a/pkgs/development/ocaml-modules/optcomp/default.nix
+++ b/pkgs/development/ocaml-modules/optcomp/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib}:
+{stdenv, fetchurl, ocaml, findlib, camlp4}:
 
 stdenv.mkDerivation {
   name = "ocaml-optcomp";
@@ -9,13 +9,13 @@ stdenv.mkDerivation {
   
   createFindlibDestdir = true;
 
-  buildInputs = [ocaml findlib];
+  buildInputs = [ocaml findlib camlp4];
 
 
   meta =  {
     homepage = https://github.com/diml/optcomp;
     description = "Optional compilation for OCaml with cpp-like directives";
-    license = "BSD";
+    license = stdenv.lib.licenses.bsd3;
     platforms = ocaml.meta.platforms;
     maintainers = [
       stdenv.lib.maintainers.gal_bolle