summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/extlib
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-09-22 23:24:28 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-09-23 09:34:13 +0100
commitd274ee3f80d0d32a227fbabbc2e2b92b115fd760 (patch)
treeb38825dcb3bc94c8c2015bf7772984ef4e228dc8 /pkgs/development/ocaml-modules/extlib
parent27f3301650066cc70eff3fa56d17c4dc2e93c289 (diff)
downloadnixlib-d274ee3f80d0d32a227fbabbc2e2b92b115fd760.tar
nixlib-d274ee3f80d0d32a227fbabbc2e2b92b115fd760.tar.gz
nixlib-d274ee3f80d0d32a227fbabbc2e2b92b115fd760.tar.bz2
nixlib-d274ee3f80d0d32a227fbabbc2e2b92b115fd760.tar.lz
nixlib-d274ee3f80d0d32a227fbabbc2e2b92b115fd760.tar.xz
nixlib-d274ee3f80d0d32a227fbabbc2e2b92b115fd760.tar.zst
nixlib-d274ee3f80d0d32a227fbabbc2e2b92b115fd760.zip
Adds camlp4
Camlp4 is a software system for writing extensible parsers for
programming languages.

Camlp4 was part of the official OCaml distribution until its version
4.01.0.

Homepage: https://github.com/ocaml/camlp4
Diffstat (limited to 'pkgs/development/ocaml-modules/extlib')
-rw-r--r--pkgs/development/ocaml-modules/extlib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/extlib/default.nix b/pkgs/development/ocaml-modules/extlib/default.nix
index 45a859c146f3..9f5f8119fb6d 100644
--- a/pkgs/development/ocaml-modules/extlib/default.nix
+++ b/pkgs/development/ocaml-modules/extlib/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, minimal ? true}:
+{stdenv, fetchurl, ocaml, findlib, camlp4, minimal ? true}:
 
 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.11";
 
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
     sha256 = "1jmfj2w0f3ap0swz8k3qqmrl6x2y4gkmg88vv024xnmliiiv7m48";
   };
 
-  buildInputs = [ocaml findlib];
+  buildInputs = [ocaml findlib camlp4];
 
   createFindlibDestdir = true;