depot/third_party/nixpkgs/pkgs/development/ocaml-modules/pgsolver/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

24 lines
722 B
Nix

{ 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 = {
description = "Collection of tools for generating, manipulating and - most of all - solving parity games";
homepage = "https://github.com/tcsprojects/pgsolver";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ mgttlinger ];
mainProgram = "pgsolver-bin";
};
}