tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
open-wbo: init at 2.0
Gabriel Ebner
8 years ago
7da15a07
e76e1961
+29
2 changed files
expand all
collapse all
unified
split
pkgs
applications
science
logic
open-wbo
default.nix
top-level
all-packages.nix
+27
pkgs/applications/science/logic/open-wbo/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub, zlib, gmp }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "open-wbo-2.0";
5
5
+
6
6
+
src = fetchFromGitHub {
7
7
+
owner = "sat-group";
8
8
+
repo = "open-wbo";
9
9
+
rev = "f193a3bd802551b13d6424bc1baba6ad35ec6ba6";
10
10
+
sha256 = "1742i15qfsbf49c4r837wz35c1p7yafvz7ar6vmgcj6cmfwr8jb4";
11
11
+
};
12
12
+
13
13
+
buildInputs = [ zlib gmp ];
14
14
+
15
15
+
makeFlags = [ "r" ];
16
16
+
installPhase = ''
17
17
+
install -Dm0755 open-wbo_release $out/bin/open-wbo
18
18
+
'';
19
19
+
20
20
+
meta = with stdenv.lib; {
21
21
+
description = "State-of-the-art MaxSAT and Pseudo-Boolean solver";
22
22
+
maintainers = with maintainers; [ gebner ];
23
23
+
platforms = platforms.unix;
24
24
+
license = licenses.mit;
25
25
+
homepage = http://sat.inesc-id.pt/open-wbo/;
26
26
+
};
27
27
+
}
+2
pkgs/top-level/all-packages.nix
···
9731
9731
cmake = cmake_2_8;
9732
9732
};
9733
9733
9734
9734
+
open-wbo = callPackage ../applications/science/logic/open-wbo {};
9735
9735
+
9734
9736
openwsman = callPackage ../development/libraries/openwsman {};
9735
9737
9736
9738
ortp = callPackage ../development/libraries/ortp { };