summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/odn
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-10-10 15:57:44 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-10-10 17:00:29 +0100
commit7bfe6144c66a9fb918eaae1b95e2c7bd7d01199b (patch)
tree6869d2d7d99cb5f46e9d269a715ccc2df5b0e213 /pkgs/development/ocaml-modules/odn
parentaf4455d853a7ad3be047c2df64cbf6a651c68036 (diff)
downloadnixpkgs-7bfe6144c66a9fb918eaae1b95e2c7bd7d01199b.tar
nixpkgs-7bfe6144c66a9fb918eaae1b95e2c7bd7d01199b.tar.gz
nixpkgs-7bfe6144c66a9fb918eaae1b95e2c7bd7d01199b.tar.bz2
nixpkgs-7bfe6144c66a9fb918eaae1b95e2c7bd7d01199b.tar.lz
nixpkgs-7bfe6144c66a9fb918eaae1b95e2c7bd7d01199b.tar.xz
nixpkgs-7bfe6144c66a9fb918eaae1b95e2c7bd7d01199b.tar.zst
nixpkgs-7bfe6144c66a9fb918eaae1b95e2c7bd7d01199b.zip
ocaml-data-notation: adds missing dependency to camlp4
Diffstat (limited to 'pkgs/development/ocaml-modules/odn')
-rw-r--r--pkgs/development/ocaml-modules/odn/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/odn/default.nix b/pkgs/development/ocaml-modules/odn/default.nix
index 5f72afcf766..bfffb67d4b0 100644
--- a/pkgs/development/ocaml-modules/odn/default.nix
+++ b/pkgs/development/ocaml-modules/odn/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, ocaml_typeconv, ounit}:
+{stdenv, fetchurl, ocaml, findlib, ocaml_typeconv, ounit, camlp4}:
 
 stdenv.mkDerivation {
   name = "ocaml-data-notation-0.0.11";
@@ -8,7 +8,7 @@ stdenv.mkDerivation {
     sha256 = "09a8zdyifpc2nl4hdvg9206142y31cq95ajgij011s1qcg3z93lj";
   };
 
-  buildInputs = [ocaml findlib ocaml_typeconv ounit];
+  buildInputs = [ocaml findlib ocaml_typeconv ounit camlp4];
 
   createFindlibDestdir = true;
 
@@ -16,13 +16,13 @@ stdenv.mkDerivation {
   buildPhase     = "ocaml setup.ml -build";
   installPhase   = "ocaml setup.ml -install";
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Store data using OCaml notation";
     homepage = https://forge.ocamlcore.org/projects/odn/;
-    license = stdenv.lib.licenses.lgpl21;
+    license = licenses.lgpl21;
     platforms = ocaml.meta.platforms;
-    maintainers = with stdenv.lib.maintainers; [
-      z77z
+    maintainers = with maintainers; [
+      vbgl z77z
     ];
   };
 }