dart-sass: 1.83.0 -> 1.83.1 (#372038)
[NixPkgs.git] / pkgs / by-name / ta / tatl / package.nix
blob712d1085a7d9ca5670a25446bcf9bd1d4d36fa55
2   stdenv,
3   lib,
4   fetchFromGitHub,
5   ocamlPackages,
6 }:
8 ocamlPackages.buildDunePackage rec {
9   duneVersion = "3";
10   pname = "tatl";
11   version = "1.0";
13   src = fetchFromGitHub {
14     owner = "theoremprover-museum";
15     repo = "TATL";
16     tag = "v${version}";
17     sha256 = "sha256-leP02141kZSUmCDXOfV0TsEn+OQ6WoyM7+9NutLX1qk=";
18   };
20   nativeBuildInputs = [ ocamlPackages.menhir ];
21   propagatedBuildInputs = [ ocamlPackages.ocamlgraph ];
23   meta = {
24     description = "Implementation of a tableau-based decision procedure for the full Alternating-time Temporal Logic (ATL*)";
25     homepage = "https://atila.ibisc.univ-evry.fr/tableau_ATL_star/";
26     license = lib.licenses.asl20;
27     maintainers = [ lib.maintainers.mgttlinger ];
28   };