summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-10-11 07:29:09 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-10-11 07:58:22 +0000
commitf0b7ee37ef33c6864d259420aa2f360d80cb5de5 (patch)
tree8fcfd6f929b1bb77de9e646cf1e4b6150c21d9db /pkgs/tools/typesetting
parent1529938fc327f8af7b145a78f3b7a0e2f8addb6f (diff)
downloadnixlib-f0b7ee37ef33c6864d259420aa2f360d80cb5de5.tar
nixlib-f0b7ee37ef33c6864d259420aa2f360d80cb5de5.tar.gz
nixlib-f0b7ee37ef33c6864d259420aa2f360d80cb5de5.tar.bz2
nixlib-f0b7ee37ef33c6864d259420aa2f360d80cb5de5.tar.lz
nixlib-f0b7ee37ef33c6864d259420aa2f360d80cb5de5.tar.xz
nixlib-f0b7ee37ef33c6864d259420aa2f360d80cb5de5.tar.zst
nixlib-f0b7ee37ef33c6864d259420aa2f360d80cb5de5.zip
hevea: make explicit the dependency to ocamlbuild
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/hevea/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/hevea/default.nix b/pkgs/tools/typesetting/hevea/default.nix
index 0e87ef5dacc1..ed6e741b3f9e 100644
--- a/pkgs/tools/typesetting/hevea/default.nix
+++ b/pkgs/tools/typesetting/hevea/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ocaml }:
+{ stdenv, fetchurl, ocamlPackages }:
 
 stdenv.mkDerivation rec {
   name = "hevea-2.29";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "1i7qkar6gjpsxqgdm90xxgp15z7gfyja0rn62n23a9aahc0hpgq6";
   };
 
-  buildInputs = [ ocaml ];
+  buildInputs = with ocamlPackages; [ ocaml ocamlbuild ];
 
   makeFlags = "PREFIX=$(out)";
 
@@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
     homepage = http://pauillac.inria.fr/~maranget/hevea/;
     license = licenses.qpl;
     maintainers = with maintainers; [ pSub ];
-    platforms = with platforms; linux;
+    platforms = with platforms; unix;
   };
 }