forked from mirrors/nixpkgs
4f1c44906c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cryptominisat/versions
25 lines
653 B
Nix
25 lines
653 B
Nix
{ stdenv, fetchFromGitHub, fetchpatch, cmake, python3, xxd, boost }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cryptominisat-${version}";
|
|
version = "5.6.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "msoos";
|
|
repo = "cryptominisat";
|
|
rev = version;
|
|
sha256 = "0csimmy1nvkfcsxjra9bm4mlcyxa3ac8zarm88zfb7640ca0d0wv";
|
|
};
|
|
|
|
buildInputs = [ python3 boost ];
|
|
nativeBuildInputs = [ cmake xxd ];
|
|
|
|
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;
|
|
};
|
|
}
|