cvc3: enable for darwin

it may be possible to get it building under clang with some work, but
switching it to gcc for now allows us to enable it
This commit is contained in:
Robert Scott
2020-09-22 23:06:45 -07:00
committed by Jon
parent 53a8a415ac
commit fc709e6dfe
2 changed files with 2 additions and 1 deletions
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
description = "A prover for satisfiability modulo theory (SMT)"; description = "A prover for satisfiability modulo theory (SMT)";
maintainers = with maintainers; maintainers = with maintainers;
[ raskin ]; [ raskin ];
platforms = platforms.linux; platforms = platforms.unix;
license = licenses.free; license = licenses.free;
homepage = "http://www.cs.nyu.edu/acsys/cvc3/index.html"; homepage = "http://www.cs.nyu.edu/acsys/cvc3/index.html";
}; };
+1
View File
@@ -26280,6 +26280,7 @@ in
cvc3 = callPackage ../applications/science/logic/cvc3 { cvc3 = callPackage ../applications/science/logic/cvc3 {
gmp = lib.overrideDerivation gmp (a: { dontDisableStatic = true; }); gmp = lib.overrideDerivation gmp (a: { dontDisableStatic = true; });
stdenv = gccStdenv;
}; };
cvc4 = callPackage ../applications/science/logic/cvc4 { cvc4 = callPackage ../applications/science/logic/cvc4 {
jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731