Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
650 B
Nix
Raw Normal View History

2024-08-01 16:12:04 +02:00
{
lib,
mkCoqDerivation,
coq,
2024-07-19 13:38:54 +02:00
stdlib,
2024-08-01 16:12:04 +02:00
version ? null,
}:
mkCoqDerivation {
pname = "coinduction";
owner = "damien-pous";
inherit version;
defaultVersion =
let
inherit (lib.versions) range;
in
lib.switch coq.coq-version [
{
case = range "8.19" "8.19";
out = "1.9";
}
] null;
release = {
"1.9".sha256 = "sha256-bBU+xDklnzJBeN41GarW5KXzD8eKsOYtb//ULYumwWE=";
};
releaseRev = v: "v${v}";
2024-07-19 13:38:54 +02:00
propagatedBuildInputs = [ stdlib ];
2024-08-01 16:12:04 +02:00
mlPlugin = true;
meta = {
description = "Library for doing proofs by (enhanced) coinduction";
2024-08-01 16:12:04 +02:00
license = lib.licenses.lgpl3Plus;
};
}