3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/coq-modules/coq-bits/default.nix

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

23 lines
700 B
Nix
Raw Normal View History

{ lib, mkCoqDerivation, coq, mathcomp-algebra, version ? null }:
2019-10-22 19:19:45 +01:00
2020-08-28 22:05:46 +01:00
with lib; mkCoqDerivation {
pname = "coq-bits";
repo = "bits";
inherit version;
defaultVersion = with versions; switch coq.coq-version [
{ case = range "8.10" "8.15"; out = "1.1.0"; }
{ case = range "8.7" "8.15"; out = "1.0.0"; }
] null;
2019-10-22 19:19:45 +01:00
release."1.1.0".sha256 = "sha256-TCw1kSXeW0ysIdLeNr+EGmpGumEE9i8tinEMp57UXaE=";
release."1.0.0".sha256 = "0nv5mdgrd075dpd8bc7h0xc5i95v0pkm0bfyq5rj6ii1s54dwcjl";
2019-10-22 19:19:45 +01:00
propagatedBuildInputs = [ mathcomp-algebra ];
2019-10-22 19:19:45 +01:00
2020-08-28 22:05:46 +01:00
meta = {
2019-10-22 19:19:45 +01:00
description = "A formalization of bitset operations in Coq";
license = licenses.asl20;
maintainers = with maintainers; [ ptival ];
};
}