Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / coq-modules / trakt / default.nix
blob3cb6c78e6cd3060d3c0cf59c0f1e2833248b8a07
1 { lib, mkCoqDerivation, coq, coq-elpi, version ? null }:
3 mkCoqDerivation {
4   pname = "trakt";
5   owner = "ecranceMERCE";
7   release."1.0".sha256 = "sha256-Qhw5fWFYxUFO2kIWWz/og+4fuy9aYG27szfNk3IglhY=";
8   release."1.1".sha256 = "sha256-JmrtM9WcT8Bfy0WZCw8xdubuMomyXmfLXJwpnCNrvsg=";
9   release."1.2".sha256 = "sha256-YQRtK2MjjsMlytdu9iutUDKhwOo4yWrSwhyBb2zNHoE=";
10   release."1.2+8.13".sha256 = "sha256-hozms4sPSMr4lFkJ20x+uW9Wqt067bifnPQxdGyKhQQ=";
12   inherit version;
13   defaultVersion = with lib.versions; lib.switch [ coq.version ] [
14     { cases = [ (range "8.15" "8.18") ]; out = "1.2"; }
15     { cases = [ (isEq "8.13") ]; out = "1.2+8.13"; }
16     { cases = [ (range "8.13" "8.17") ]; out = "1.1"; }
17   ] null;
19   propagatedBuildInputs = [ coq-elpi ];
21   meta = with lib; {
22     description = "A generic goal preprocessing tool for proof automation tactics in Coq";
23     maintainers = with maintainers; [ siraben ];
24     license = licenses.lgpl3Plus;
25     platforms = platforms.unix;
26   };