depot/third_party/nixpkgs/pkgs/by-name/ap/approxmc/package.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

43 lines
780 B
Nix

{ stdenv
, fetchFromGitHub
, cmake
, zlib
, gmp
, cryptominisat
, boost
, arjun-cnf
, louvain-community
, lib
}:
stdenv.mkDerivation (finalAttrs: {
pname = "approxmc";
version = "4.1.23";
src = fetchFromGitHub {
owner = "meelgroup";
repo = "approxmc";
rev = finalAttrs.version;
hash = "sha256-pE2m6Cc2u53H/5CM+2JuQxZOhjhHUZOi0kn23CJmALM=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [
zlib
gmp
cryptominisat
boost
arjun-cnf
louvain-community
];
meta = with lib; {
description = "Approximate Model Counter";
homepage = "https://github.com/meelgroup/approxmc";
license = licenses.mit;
maintainers = with maintainers; [ t4ccer ];
platforms = platforms.linux;
mainProgram = "approxmc";
};
})