nixpkgs/pkgs/development/coq-modules/coq-bits/default.nix
Cyril Cohen 8d05e53561
Coq: refactoring of mathcomp packages (#86088)
- fixed bignum version
- fixed coq-bits version
- fixed coqprime version
- fixed mathcomp and mathcomp extra packages
  (reworked building scheme and removed unused ssreflect directory)
- giving the user access to function filterCoqPackages, because overrideScope' does not re-apply it.
2020-05-09 07:47:47 +02:00

39 lines
942 B
Nix

{ stdenv, fetchFromGitHub, coq, mathcomp-algebra }:
let
version = "20190812";
in
stdenv.mkDerivation {
name = "coq${coq.coq-version}-coq-bits-${version}";
src = fetchFromGitHub {
owner = "coq-community";
repo = "bits";
rev = "1.0.0";
sha256 = "0nv5mdgrd075dpd8bc7h0xc5i95v0pkm0bfyq5rj6ii1s54dwcjl";
};
buildInputs = [ coq ];
propagatedBuildInputs = [ mathcomp-algebra ];
enableParallelBuilding = true;
installPhase = ''
make -f Makefile CoqMakefile
make -f CoqMakefile COQLIB=$out/lib/coq/${coq.coq-version}/ install
'';
meta = with stdenv.lib; {
homepage = "https://github.com/coq-community/coq-bits";
description = "A formalization of bitset operations in Coq";
license = licenses.asl20;
maintainers = with maintainers; [ ptival ];
platforms = coq.meta.platforms;
};
passthru = {
compatibleCoqVersions = v: builtins.elem v [ "8.7" "8.8" "8.9" "8.10" ];
};
}