open-wbo: init at 2.0

+29
+27
pkgs/applications/science/logic/open-wbo/default.nix
··· 1 + { stdenv, fetchFromGitHub, zlib, gmp }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "open-wbo-2.0"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "sat-group"; 8 + repo = "open-wbo"; 9 + rev = "f193a3bd802551b13d6424bc1baba6ad35ec6ba6"; 10 + sha256 = "1742i15qfsbf49c4r837wz35c1p7yafvz7ar6vmgcj6cmfwr8jb4"; 11 + }; 12 + 13 + buildInputs = [ zlib gmp ]; 14 + 15 + makeFlags = [ "r" ]; 16 + installPhase = '' 17 + install -Dm0755 open-wbo_release $out/bin/open-wbo 18 + ''; 19 + 20 + meta = with stdenv.lib; { 21 + description = "State-of-the-art MaxSAT and Pseudo-Boolean solver"; 22 + maintainers = with maintainers; [ gebner ]; 23 + platforms = platforms.unix; 24 + license = licenses.mit; 25 + homepage = http://sat.inesc-id.pt/open-wbo/; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 9731 9731 cmake = cmake_2_8; 9732 9732 }; 9733 9733 9734 + open-wbo = callPackage ../applications/science/logic/open-wbo {}; 9735 + 9734 9736 openwsman = callPackage ../development/libraries/openwsman {}; 9735 9737 9736 9738 ortp = callPackage ../development/libraries/ortp { };