2024-01-02 11:29:13 +00:00
|
|
|
{ lib, mkCoqDerivation, coq, mathcomp, version ? null }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
mkCoqDerivation {
|
2021-01-09 10:05:03 +00:00
|
|
|
pname = "coq-bits";
|
|
|
|
repo = "bits";
|
|
|
|
inherit version;
|
2024-01-02 11:29:13 +00:00
|
|
|
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"; }
|
2022-06-16 17:23:12 +00:00
|
|
|
] null;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
release."1.1.0".sha256 = "sha256-TCw1kSXeW0ysIdLeNr+EGmpGumEE9i8tinEMp57UXaE=";
|
|
|
|
release."1.0.0".sha256 = "0nv5mdgrd075dpd8bc7h0xc5i95v0pkm0bfyq5rj6ii1s54dwcjl";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
propagatedBuildInputs = [ mathcomp.algebra ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A formalization of bitset operations in Coq";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ptival ];
|
|
|
|
};
|
|
|
|
}
|