nixpkgs/pkgs/applications/science/logic/stp/default.nix

37 lines
1.2 KiB
Nix
Raw Normal View History

2017-05-14 10:55:19 +02:00
{ stdenv, cmake, boost, bison, flex, fetchFromGitHub, perl, python3, python3Packages, zlib, minisatUnstable, cryptominisat }:
stdenv.mkDerivation rec {
2017-05-14 10:55:19 +02:00
version = "2.2.0";
name = "stp-${version}";
2017-05-14 10:55:19 +02:00
src = fetchFromGitHub {
owner = "stp";
repo = "stp";
rev = "stp-${version}";
sha256 = "1jh23wjm62nnqfx447g2y53bbangq04hjrvqc35v9xxpcjgj3i49";
};
2017-05-14 10:55:19 +02:00
buildInputs = [ boost zlib minisatUnstable cryptominisat python3 ];
nativeBuildInputs = [ cmake bison flex perl ];
preConfigure = ''
python_install_dir=$out/${python3Packages.python.sitePackages}
mkdir -p $python_install_dir
cmakeFlagsArray=(
$cmakeFlagsArray
"-DBUILD_SHARED_LIBS=ON"
"-DPYTHON_LIB_INSTALL_DIR=$python_install_dir"
)
'';
2017-05-14 10:55:19 +02:00
2017-12-05 12:28:04 +01:00
# `make -f lib/Interface/CMakeFiles/cppinterface.dir/build.make lib/Interface/CMakeFiles/cppinterface.dir/cpp_interface.cpp.o`:
# include/stp/AST/UsefulDefs.h:41:29: fatal error: stp/AST/ASTKind.h: No such file or directory
enableParallelBuilding = false;
2017-05-14 10:55:19 +02:00
meta = with stdenv.lib; {
description = "Simple Theorem Prover";
maintainers = with maintainers; [ ];
2017-05-14 10:55:19 +02:00
platforms = platforms.linux;
license = licenses.mit;
};
}