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

32 lines
697 B
Nix
Raw Normal View History

2018-12-14 10:52:25 +00:00
{ stdenv, fetchFromGitHub, coq }:
2018-12-14 10:52:25 +00:00
let param =
{
version = "20180918";
rev = "243d6be45666da73a9da6c37d451327165275798";
sha256 = "1nh2psb4pcppy1akk24ilb4p08m35cba357i4xyymmarmbwqpxmn";
};
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
name = "coq${coq.coq-version}-InfSeqExt-${param.version}";
src = fetchFromGitHub {
owner = "DistributedComponents";
repo = "InfSeqExt";
inherit (param) rev sha256;
};
2018-12-14 10:52:25 +00:00
buildInputs = [ coq ];
enableParallelBuilding = true;
2018-12-14 10:52:25 +00:00
preConfigure = "patchShebangs ./configure";
installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";
passthru = {
2019-05-14 08:31:49 +00:00
compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" "8.9" ];
};
}