about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/ocamlmod
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/tools/ocaml/ocamlmod
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/tools/ocaml/ocamlmod')
-rw-r--r--pkgs/development/tools/ocaml/ocamlmod/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/ocamlmod/default.nix b/pkgs/development/tools/ocaml/ocamlmod/default.nix
index d72df18f8992..65359049a96d 100644
--- a/pkgs/development/tools/ocaml/ocamlmod/default.nix
+++ b/pkgs/development/tools/ocaml/ocamlmod/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, ounit}:
+{stdenv, fetchurl, ocaml, findlib}:
 
 stdenv.mkDerivation {
   name = "ocamlmod-0.0.7";
@@ -8,7 +8,7 @@ stdenv.mkDerivation {
     sha256 = "11kg7wh0gy492ma5c6bcjh6frv1a9lh9f26hiys2i0d1ky8s0ad3";
   };
 
-  buildInputs = [ocaml findlib ounit];
+  buildInputs = [ocaml findlib];
 
   configurePhase = "ocaml setup.ml -configure --prefix $out";
   buildPhase     = "ocaml setup.ml -build";