forked from mirrors/nixpkgs
pgsolver: init at 4.1
This commit is contained in:
parent
b9d100b539
commit
f6c363f81d
23
pkgs/development/ocaml-modules/pgsolver/default.nix
Normal file
23
pkgs/development/ocaml-modules/pgsolver/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib, fetchFromGitHub, buildOasisPackage, ounit, tcslib, ocaml-sat-solvers }:
|
||||||
|
|
||||||
|
buildOasisPackage rec {
|
||||||
|
pname = "pgsolver";
|
||||||
|
version = "4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tcsprojects";
|
||||||
|
repo = "pgsolver";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "16skrn8qql9djpray25xv66rjgfl20js5wqnxyq1763nmyizyj8a";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ounit ];
|
||||||
|
propagatedBuildInputs = [ tcslib ocaml-sat-solvers ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/tcsprojects/pgsolver;
|
||||||
|
description = "A collection of tools for generating, manipulating and - most of all - solving parity games";
|
||||||
|
license = lib.licenses.bsd3;
|
||||||
|
maintainers = with lib.maintainers; [ mgttlinger ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -577,6 +577,8 @@ let
|
||||||
|
|
||||||
ounit = callPackage ../development/ocaml-modules/ounit { };
|
ounit = callPackage ../development/ocaml-modules/ounit { };
|
||||||
|
|
||||||
|
pgsolver = callPackage ../development/ocaml-modules/pgsolver { };
|
||||||
|
|
||||||
piqi = callPackage ../development/ocaml-modules/piqi {
|
piqi = callPackage ../development/ocaml-modules/piqi {
|
||||||
base64 = base64_2;
|
base64 = base64_2;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue