Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
mkCoqDerivation,
|
|
coq,
|
|
coq-elpi,
|
|
stdlib,
|
|
version ? null,
|
|
}:
|
|
|
|
mkCoqDerivation {
|
|
pname = "trakt";
|
|
owner = "ecranceMERCE";
|
|
|
|
release."1.0".sha256 = "sha256-Qhw5fWFYxUFO2kIWWz/og+4fuy9aYG27szfNk3IglhY=";
|
|
release."1.1".sha256 = "sha256-JmrtM9WcT8Bfy0WZCw8xdubuMomyXmfLXJwpnCNrvsg=";
|
|
release."1.2".sha256 = "sha256-YQRtK2MjjsMlytdu9iutUDKhwOo4yWrSwhyBb2zNHoE=";
|
|
release."1.2+8.13".sha256 = "sha256-hozms4sPSMr4lFkJ20x+uW9Wqt067bifnPQxdGyKhQQ=";
|
|
|
|
inherit version;
|
|
defaultVersion =
|
|
with lib.versions;
|
|
lib.switch
|
|
[ coq.version ]
|
|
[
|
|
{
|
|
cases = [ (range "8.15" "8.17") ];
|
|
out = "1.2";
|
|
}
|
|
{
|
|
cases = [ (isEq "8.13") ];
|
|
out = "1.2+8.13";
|
|
}
|
|
{
|
|
cases = [ (range "8.13" "8.17") ];
|
|
out = "1.1";
|
|
}
|
|
]
|
|
null;
|
|
|
|
propagatedBuildInputs = [
|
|
coq-elpi
|
|
stdlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Generic goal preprocessing tool for proof automation tactics in Coq";
|
|
maintainers = with maintainers; [ siraben ];
|
|
license = licenses.lgpl3Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|