summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lablgtk
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/lablgtk
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/lablgtk')
-rw-r--r--pkgs/development/ocaml-modules/lablgtk/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/lablgtk/default.nix b/pkgs/development/ocaml-modules/lablgtk/default.nix
index f303323b7c8c..7499be9c5dd3 100644
--- a/pkgs/development/ocaml-modules/lablgtk/default.nix
+++ b/pkgs/development/ocaml-modules/lablgtk/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, pkgconfig, gtk, libgnomecanvas, libglade, gtksourceview}:
+{stdenv, fetchurl, ocaml, findlib, pkgconfig, gtk, libgnomecanvas, libglade, gtksourceview, camlp4}:
 
 let
   ocaml_version = (builtins.parseDrvName ocaml.name).version;
@@ -15,7 +15,7 @@ stdenv.mkDerivation (rec {
     sha256 = "a0ea9752eb257dadcfc2914408fff339d4c34357802f02c63329dd41b777de2f";
   };
 
-  buildInputs = [ocaml findlib pkgconfig gtk libgnomecanvas libglade gtksourceview];
+  buildInputs = [ocaml findlib pkgconfig gtk libgnomecanvas libglade gtksourceview camlp4];
 
   configureFlags = "--with-libdir=$(out)/lib/ocaml/${ocaml_version}/site-lib";
   buildFlags = "world";