about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/coq-modules/coq-bits/default.nix
blob: 16a26d9fa32eb7dec3cc37b7d1d4a15e884f3fd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, mkCoqDerivation, coq, mathcomp-algebra, version ? null }:

mkCoqDerivation {
  pname = "coq-bits";
  repo = "bits";
  inherit version;
  defaultVersion = with lib.versions; lib.switch coq.coq-version [
    { case = range "8.10" "8.16"; out = "1.1.0"; }
    { case = range "8.7"  "8.15"; out = "1.0.0"; }
  ] null;

  release."1.1.0".sha256 = "sha256-TCw1kSXeW0ysIdLeNr+EGmpGumEE9i8tinEMp57UXaE=";
  release."1.0.0".sha256 = "0nv5mdgrd075dpd8bc7h0xc5i95v0pkm0bfyq5rj6ii1s54dwcjl";

  propagatedBuildInputs = [ mathcomp-algebra ];

  meta = with lib; {
    description = "A formalization of bitset operations in Coq";
    license = licenses.asl20;
    maintainers = with maintainers; [ ptival ];
  };
}