blob: cb6cb3fd95b66c3e2f3eb950685c85b8c7cc126a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
stdenv,
fetchFromGitHub,
cmake,
zlib,
gmp,
cryptominisat,
boost,
arjun-cnf,
louvain-community,
lib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "approxmc";
version = "4.1.24";
src = fetchFromGitHub {
owner = "meelgroup";
repo = "approxmc";
rev = finalAttrs.version;
hash = "sha256-rADPC7SVwzjUN5jb7Wt341oGfr6+LszIaBUe8QgmpRU=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [
zlib
gmp
cryptominisat
boost
arjun-cnf
louvain-community
];
meta = {
description = "Approximate Model Counter";
homepage = "https://github.com/meelgroup/approxmc";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ t4ccer ];
platforms = lib.platforms.linux;
mainProgram = "approxmc";
};
})
|