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

25 lines
651 B
Nix
Raw Normal View History

2019-01-04 11:40:39 +01:00
{ stdenv, fetchFromGitHub, fetchpatch, cmake, python, xxd, boost }:
2017-05-14 10:53:30 +02:00
stdenv.mkDerivation rec {
name = "cryptominisat-${version}";
2019-01-04 11:40:39 +01:00
version = "5.6.6";
2017-05-14 10:53:30 +02:00
src = fetchFromGitHub {
owner = "msoos";
repo = "cryptominisat";
rev = version;
2019-01-04 11:40:39 +01:00
sha256 = "1a1494gj4j73yij0hjbzsn2hglk9zy5c5wfwgig3j67cis28saf5";
2017-05-14 10:53:30 +02:00
};
2019-01-04 11:40:39 +01:00
buildInputs = [ python boost ];
nativeBuildInputs = [ cmake xxd ];
2017-05-14 10:53:30 +02:00
meta = with stdenv.lib; {
description = "An advanced SAT Solver";
homepage = https://github.com/msoos/cryptominisat;
license = licenses.mit;
2017-05-14 10:53:30 +02:00
maintainers = with maintainers; [ mic92 ];
platforms = platforms.unix;
2017-05-14 10:53:30 +02:00
};
}