2022-06-16 17:23:12 +00:00
|
|
|
{ lib, mkCoqDerivation, coq, mathcomp-algebra, version ? null }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-09 10:05:03 +00:00
|
|
|
with lib; mkCoqDerivation {
|
|
|
|
pname = "coq-bits";
|
|
|
|
repo = "bits";
|
|
|
|
inherit version;
|
2022-06-16 17:23:12 +00:00
|
|
|
defaultVersion = with versions; switch coq.coq-version [
|
2022-09-09 14:08:57 +00:00
|
|
|
{ case = range "8.10" "8.16"; out = "1.1.0"; }
|
2022-06-16 17:23:12 +00:00
|
|
|
{ case = range "8.7" "8.15"; out = "1.0.0"; }
|
|
|
|
] 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
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
propagatedBuildInputs = [ mathcomp-algebra ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-09 10:05:03 +00:00
|
|
|
meta = {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A formalization of bitset operations in Coq";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ptival ];
|
|
|
|
};
|
|
|
|
}
|