tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
coq-8.3: fix (needs make 3)
Vincent Laporte
10 years ago
1d72ce49
2727ecec
+3
-2
2 changed files
expand all
collapse all
unified
split
pkgs
applications
science
logic
coq
8.3.nix
top-level
all-packages.nix
+2
-2
pkgs/applications/science/logic/coq/8.3.nix
···
1
1
# - coqide compilation can be disabled by setting lablgtk to null;
2
2
3
3
-
{stdenv, fetchurl, ocaml, findlib, camlp5, ncurses, lablgtk ? null}:
3
3
+
{ stdenv, make, fetchurl, ocaml, findlib, camlp5, ncurses, lablgtk ? null }:
4
4
5
5
let
6
6
version = "8.3pl4";
···
21
21
sha256 = "17d3lmchmqir1rawnr52g78srg4wkd7clzpzfsivxc4y1zp6rwkr";
22
22
};
23
23
24
24
-
buildInputs = [ ocaml findlib camlp5 ncurses lablgtk ];
24
24
+
buildInputs = [ make ocaml findlib camlp5 ncurses lablgtk ];
25
25
26
26
prefixKey = "-prefix ";
27
27
+1
pkgs/top-level/all-packages.nix
···
14095
14095
};
14096
14096
14097
14097
coq_8_3 = callPackage ../applications/science/logic/coq/8.3.nix {
14098
14098
+
make = gnumake3;
14098
14099
inherit (ocamlPackages_3_12_1) ocaml findlib;
14099
14100
camlp5 = ocamlPackages_3_12_1.camlp5_transitional;
14100
14101
lablgtk = ocamlPackages_3_12_1.lablgtk_2_14;