Skip to content

Commit

Permalink
cvc3: enable for darwin
Browse files Browse the repository at this point in the history
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
  • Loading branch information
risicle authored and Jon committed Sep 23, 2020
1 parent 53a8a41 commit fc709e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/science/logic/cvc3/default.nix
Expand Up @@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
description = "A prover for satisfiability modulo theory (SMT)";
maintainers = with maintainers;
[ raskin ];
platforms = platforms.linux;
platforms = platforms.unix;
license = licenses.free;
homepage = "http://www.cs.nyu.edu/acsys/cvc3/index.html";
};
Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -26280,6 +26280,7 @@ in

cvc3 = callPackage ../applications/science/logic/cvc3 {
gmp = lib.overrideDerivation gmp (a: { dontDisableStatic = true; });
stdenv = gccStdenv;
};
cvc4 = callPackage ../applications/science/logic/cvc4 {
jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
Expand Down

0 comments on commit fc709e6

Please sign in to comment.