Skip to content

Commit 0bf019c

Browse files
committedJul 19, 2017
coqPackages_8_6.CoLoR: Fix installPhase
1 parent b2cacec commit 0bf019c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎pkgs/development/coq-modules/CoLoR/default.nix

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ stdenv.mkDerivation {
1010

1111
buildInputs = [ coq ];
1212
enableParallelBuilding = true;
13-
installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";
13+
14+
installPhase = ''
15+
make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
16+
'';
1417

1518
meta = with stdenv.lib; {
1619
homepage = http://color.inria.fr/;

0 commit comments

Comments
 (0)
Please sign in to comment.