mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 07:04:25 +00:00
commit
5026c1ef69
@ -1,14 +1,14 @@
|
|||||||
{ stdenv, cmake, boost, bison, flex, fetchFromGitHub, perl, python3, python3Packages, zlib, minisatUnstable, cryptominisat }:
|
{ stdenv, cmake, boost, bison, flex, fetchFromGitHub, perl, python3, python3Packages, zlib, minisatUnstable, cryptominisat }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2.2.0";
|
pname = "stp";
|
||||||
name = "stp-${version}";
|
version = "2.3.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "stp";
|
owner = "stp";
|
||||||
repo = "stp";
|
repo = "stp";
|
||||||
rev = "stp-${version}";
|
rev = version;
|
||||||
sha256 = "1jh23wjm62nnqfx447g2y53bbangq04hjrvqc35v9xxpcjgj3i49";
|
sha256 = "1yg2v4wmswh1sigk47drwsxyayr472mf4i47lqmlcgn9hhbx1q87";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ boost zlib minisatUnstable cryptominisat python3 ];
|
buildInputs = [ boost zlib minisatUnstable cryptominisat python3 ];
|
||||||
@ -23,9 +23,8 @@ stdenv.mkDerivation rec {
|
|||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# `make -f lib/Interface/CMakeFiles/cppinterface.dir/build.make lib/Interface/CMakeFiles/cppinterface.dir/cpp_interface.cpp.o`:
|
# seems to build fine now, may revert if concurrency does become an issue
|
||||||
# include/stp/AST/UsefulDefs.h:41:29: fatal error: stp/AST/ASTKind.h: No such file or directory
|
enableParallelBuilding = true;
|
||||||
enableParallelBuilding = false;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Simple Theorem Prover";
|
description = "Simple Theorem Prover";
|
||||||
|
Loading…
Reference in New Issue
Block a user