2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-11 03:32:41 +00:00

Merge pull request from hrajchert/verit-macos-fix

veriT: Fix build on macos
This commit is contained in:
Shea Levy 2022-06-22 16:40:50 -04:00 committed by GitHub
commit 6709bf9d7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions
pkgs
applications/science/logic/verit
top-level

View File

@ -22,7 +22,6 @@ stdenv.mkDerivation {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "An open, trustable and efficient SMT-solver";
homepage = "https://verit.loria.fr/";
license = licenses.bsd3;

View File

@ -33605,7 +33605,9 @@ with pkgs;
verifast = callPackage ../applications/science/logic/verifast {};
veriT = callPackage ../applications/science/logic/verit {};
veriT = callPackage ../applications/science/logic/verit {
stdenv = gccStdenv;
};
why3 = callPackage ../applications/science/logic/why3 { };