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
1011 B
Nix
52 lines
1011 B
Nix
{
|
|
lib,
|
|
mkCoqDerivation,
|
|
coq,
|
|
mathcomp,
|
|
mathcomp-algebra-tactics,
|
|
stdlib,
|
|
version ? null,
|
|
}:
|
|
|
|
mkCoqDerivation {
|
|
pname = "coq-bits";
|
|
repo = "bits";
|
|
inherit version;
|
|
defaultVersion =
|
|
with lib.versions;
|
|
lib.switch
|
|
[ coq.version mathcomp.version ]
|
|
[
|
|
{
|
|
cases = [
|
|
(range "8.10" "8.16")
|
|
(isLt "2.0")
|
|
];
|
|
out = "1.1.0";
|
|
}
|
|
{
|
|
cases = [
|
|
(range "8.7" "8.15")
|
|
(isLt "2.0")
|
|
];
|
|
out = "1.0.0";
|
|
}
|
|
]
|
|
null;
|
|
|
|
release."1.1.0".sha256 = "sha256-TCw1kSXeW0ysIdLeNr+EGmpGumEE9i8tinEMp57UXaE=";
|
|
release."1.0.0".sha256 = "0nv5mdgrd075dpd8bc7h0xc5i95v0pkm0bfyq5rj6ii1s54dwcjl";
|
|
|
|
propagatedBuildInputs = [
|
|
mathcomp.algebra
|
|
mathcomp-algebra-tactics
|
|
stdlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Formalization of bitset operations in Coq";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ptival ];
|
|
};
|
|
}
|