tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
hevea: make explicit the dependency to ocamlbuild
Vincent Laporte
8 years ago
f0b7ee37
1529938f
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
typesetting
hevea
default.nix
+3
-3
pkgs/tools/typesetting/hevea/default.nix
···
1
1
-
{ stdenv, fetchurl, ocaml }:
1
1
+
{ stdenv, fetchurl, ocamlPackages }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "hevea-2.29";
···
8
8
sha256 = "1i7qkar6gjpsxqgdm90xxgp15z7gfyja0rn62n23a9aahc0hpgq6";
9
9
};
10
10
11
11
-
buildInputs = [ ocaml ];
11
11
+
buildInputs = with ocamlPackages; [ ocaml ocamlbuild ];
12
12
13
13
makeFlags = "PREFIX=$(out)";
14
14
···
17
17
homepage = http://pauillac.inria.fr/~maranget/hevea/;
18
18
license = licenses.qpl;
19
19
maintainers = with maintainers; [ pSub ];
20
20
-
platforms = with platforms; linux;
20
20
+
platforms = with platforms; unix;
21
21
};
22
22
}