summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lablgl
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-10-10 16:35:16 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-10-10 17:00:30 +0100
commit977f172fee3f59725bf342368c1b3c9027d99618 (patch)
tree1a698afe727586fd233ee920aa127ed3c4c7c417 /pkgs/development/ocaml-modules/lablgl
parent35c92ec1ac7edbd93c1e7fc507da15ec5ff869c5 (diff)
downloadnixpkgs-977f172fee3f59725bf342368c1b3c9027d99618.tar
nixpkgs-977f172fee3f59725bf342368c1b3c9027d99618.tar.gz
nixpkgs-977f172fee3f59725bf342368c1b3c9027d99618.tar.bz2
nixpkgs-977f172fee3f59725bf342368c1b3c9027d99618.tar.lz
nixpkgs-977f172fee3f59725bf342368c1b3c9027d99618.tar.xz
nixpkgs-977f172fee3f59725bf342368c1b3c9027d99618.tar.zst
nixpkgs-977f172fee3f59725bf342368c1b3c9027d99618.zip
ocaml-lablgl: adds missing dependency to camlp4
Diffstat (limited to 'pkgs/development/ocaml-modules/lablgl')
-rw-r--r--pkgs/development/ocaml-modules/lablgl/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/lablgl/default.nix b/pkgs/development/ocaml-modules/lablgl/default.nix
index c3b18bf3537..115f66ab983 100644
--- a/pkgs/development/ocaml-modules/lablgl/default.nix
+++ b/pkgs/development/ocaml-modules/lablgl/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, lablgtk, findlib, mesa, freeglut } :
+{stdenv, fetchurl, ocaml, lablgtk, findlib, mesa, freeglut, camlp4 } :
 
 let
   ocaml_version = (builtins.parseDrvName ocaml.name).version;
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
     sha256 = "0qabydd219i4ak7hxgc67496qnnscpnydya2m4ijn3cpbgih7zyq";
   };
 
-  buildInputs = [ocaml findlib lablgtk freeglut ];
+  buildInputs = [ocaml findlib lablgtk freeglut camlp4];
   propagatedBuildInputs = [ mesa ];
 
   patches = [ ./Makefile.config.patch ./META.patch ];