nixpkgs/pkgs/development/coq-modules/coq-bits/default.nix

25 lines
694 B
Nix
Raw Permalink Normal View History

2020-08-28 21:05:46 +00:00
{ lib, mkCoqDerivation, coq, mathcomp, version ? null }:
2019-10-22 18:19:45 +00:00
2020-08-28 21:05:46 +00:00
with lib; mkCoqDerivation {
pname = "coq-bits";
repo = "bits";
inherit version;
defaultVersion = if versions.isGe "8.7" coq.version then "20190812" else null;
2019-10-22 18:19:45 +00:00
2020-08-28 21:05:46 +00:00
release."20190812".rev = "1.0.0";
release."20190812".sha256 = "0nv5mdgrd075dpd8bc7h0xc5i95v0pkm0bfyq5rj6ii1s54dwcjl";
2019-10-22 18:19:45 +00:00
2020-08-28 21:05:46 +00:00
propagatedBuildInputs = [ mathcomp.algebra ];
2019-10-22 18:19:45 +00:00
installPhase = ''
make -f Makefile CoqMakefile
make -f CoqMakefile COQLIB=$out/lib/coq/${coq.coq-version}/ install
'';
2020-08-28 21:05:46 +00:00
meta = {
2019-10-22 18:19:45 +00:00
description = "A formalization of bitset operations in Coq";
license = licenses.asl20;
maintainers = with maintainers; [ ptival ];
};
}