eprover: fix build on Darwin
This commit is contained in:
parent
05cadcbc9a
commit
694a5ba291
@ -20,7 +20,11 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [ which ];
|
buildInputs = [ which ];
|
||||||
|
|
||||||
preConfigure = "sed -e 's@^EXECPATH\\s.*@EXECPATH = '\$out'/bin@' -i Makefile.vars";
|
preConfigure = ''
|
||||||
|
sed -e 's@^EXECPATH\\s.*@EXECPATH = '\$out'/bin@' \
|
||||||
|
-e 's/^CC *= gcc$//' \
|
||||||
|
-i Makefile.vars
|
||||||
|
'';
|
||||||
|
|
||||||
buildPhase = "make install";
|
buildPhase = "make install";
|
||||||
|
|
||||||
@ -34,6 +38,8 @@ stdenv.mkDerivation {
|
|||||||
meta = {
|
meta = {
|
||||||
inherit (s) version;
|
inherit (s) version;
|
||||||
description = "Automated theorem prover for full first-order logic with equality";
|
description = "Automated theorem prover for full first-order logic with equality";
|
||||||
|
homepage = http://www.eprover.org/;
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
maintainers = [stdenv.lib.maintainers.raskin];
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user