forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / pgsolver / default.nix
blob4bf765bc9cfc4cbbf9a4ba3fcde04c51753dfe2e
1 { lib, fetchFromGitHub, buildOasisPackage, ounit, tcslib, ocaml-sat-solvers }:
3 buildOasisPackage rec {
4   pname = "pgsolver";
5   version = "4.1";
7   src = fetchFromGitHub {
8     owner  = "tcsprojects";
9     repo   = "pgsolver";
10     rev    = "v${version}";
11     sha256 = "16skrn8qql9djpray25xv66rjgfl20js5wqnxyq1763nmyizyj8a";
12   };
14   buildInputs = [ ounit ];
15   propagatedBuildInputs = [ tcslib ocaml-sat-solvers ];
17   meta = {
18     description = "Collection of tools for generating, manipulating and - most of all - solving parity games";
19     homepage = "https://github.com/tcsprojects/pgsolver";
20     license = lib.licenses.bsd3;
21     maintainers = with lib.maintainers; [ mgttlinger ];
22     mainProgram = "pgsolver-bin";
23   };