mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 19:15:39 +00:00
31 lines
898 B
Nix
31 lines
898 B
Nix
{ stdenv, fetchFromGitHub, fetchpatch, cmake, python, xxd }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cryptominisat-${version}";
|
|
version = "5.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "msoos";
|
|
repo = "cryptominisat";
|
|
rev = version;
|
|
sha256 = "0cpw5d9vplxvv3aaplhnga55gz1hy29p7s4pkw1306knkbhlzvkb";
|
|
};
|
|
|
|
buildInputs = [ python xxd ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
patches = [(fetchpatch rec {
|
|
name = "fix-exported-library-name.patch";
|
|
url = "https://github.com/msoos/cryptominisat/commit/7a47795cbe5ad5a899731102d297f234bcade077.patch";
|
|
sha256 = "11hf3cfqs4cykn7rlgjglq29lzqfxvlm0f20qasi0kdrz01cr30f";
|
|
})];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An advanced SAT Solver";
|
|
homepage = https://github.com/msoos/cryptominisat;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|