5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
30 lines
611 B
Nix
30 lines
611 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, python3
|
|
, boost
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cryptominisat";
|
|
version = "5.11.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "msoos";
|
|
repo = "cryptominisat";
|
|
rev = version;
|
|
hash = "sha256-p/sVinjEh078PGtJ6JBRA8EmrJVcchBs9L3bRZvCHuo=";
|
|
};
|
|
|
|
buildInputs = [ python3 boost ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "An advanced SAT Solver";
|
|
homepage = "https://github.com/msoos/cryptominisat";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|