2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, python3, xxd, boost }:
|
2017-05-14 01:53:30 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "cryptominisat";
|
2020-05-18 20:50:28 -07:00
|
|
|
version = "5.7.1";
|
2017-05-14 01:53:30 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-07-23 18:25:27 -07:00
|
|
|
owner = "msoos";
|
|
|
|
repo = "cryptominisat";
|
|
|
|
rev = version;
|
2020-05-18 20:50:28 -07:00
|
|
|
sha256 = "16lydnbd4rxfyabvvw7l4hbbby3yprcqqzrydd3n8rjbxibi4xyf";
|
2017-05-14 01:53:30 -07:00
|
|
|
};
|
|
|
|
|
2019-01-05 07:38:10 -08:00
|
|
|
buildInputs = [ python3 boost ];
|
2019-01-04 02:40:39 -08:00
|
|
|
nativeBuildInputs = [ cmake xxd ];
|
2017-05-14 01:53:30 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An advanced SAT Solver";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/msoos/cryptominisat";
|
2017-07-23 18:25:27 -07:00
|
|
|
license = licenses.mit;
|
2017-05-14 01:53:30 -07:00
|
|
|
maintainers = with maintainers; [ mic92 ];
|
2017-07-23 18:25:27 -07:00
|
|
|
platforms = platforms.unix;
|
2017-05-14 01:53:30 -07:00
|
|
|
};
|
|
|
|
}
|