tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
eprover: fix build in non-GCC environments
Vincent Laporte
8 years ago
e75009ec
ef9666e0
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
logic
eprover
default.nix
+2
-1
pkgs/applications/science/logic/eprover/default.nix
···
1
1
{ stdenv, fetchurl, which }:
2
2
+
2
3
stdenv.mkDerivation rec {
3
4
name = "eprover-${version}";
4
5
version = "2.0";
···
11
12
buildInputs = [ which ];
12
13
13
14
preConfigure = ''
14
14
-
sed -e 's/ *CC *= gcc$//' -i Makefile.vars
15
15
+
sed -e 's/ *CC *= *gcc$//' -i Makefile.vars
15
16
'';
16
17
configureFlags = "--exec-prefix=$(out) --man-prefix=$(out)/share/man";
17
18