Skip to content

Commit

Permalink
hevea: make explicit the dependency to ocamlbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Oct 11, 2017
1 parent 1529938 commit f0b7ee3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/tools/typesetting/hevea/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml }:
{ stdenv, fetchurl, ocamlPackages }:

stdenv.mkDerivation rec {
name = "hevea-2.29";
Expand All @@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "1i7qkar6gjpsxqgdm90xxgp15z7gfyja0rn62n23a9aahc0hpgq6";
};

buildInputs = [ ocaml ];
buildInputs = with ocamlPackages; [ ocaml ocamlbuild ];

makeFlags = "PREFIX=$(out)";

Expand All @@ -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;
};
}

0 comments on commit f0b7ee3

Please sign in to comment.