nixpkgs/pkgs/development/coq-modules/mathcomp/generic.nix

43 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, coq, ncurses, which
, graphviz, withDoc ? false
, src, name
2015-05-28 19:31:12 +01:00
}:
stdenv.mkDerivation {
inherit name;
2015-05-28 19:31:12 +01:00
inherit src;
nativeBuildInputs = stdenv.lib.optionals withDoc [ graphviz ];
buildInputs = with coq.ocamlPackages; [ ocaml findlib camlp5 ncurses which ];
propagatedBuildInputs = [ coq ];
2015-05-28 19:31:12 +01:00
enableParallelBuilding = true;
buildFlags = stdenv.lib.optionalString withDoc "doc";
preBuild = ''
2018-04-24 15:21:21 +01:00
patchShebangs etc/utils/ssrcoqdep || true
cd mathcomp
export COQBIN=${coq}/bin/
'';
2015-05-28 19:31:12 +01:00
installPhase = ''
make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
'' + stdenv.lib.optionalString withDoc ''
2015-05-28 19:31:12 +01:00
make -f Makefile.coq install-doc DOCDIR=$out/share/coq/${coq.coq-version}/
'';
meta = with stdenv.lib; {
homepage = http://ssr.msr-inria.inria.fr/;
license = licenses.cecill-b;
maintainers = [ maintainers.vbgl maintainers.jwiegley ];
platforms = coq.meta.platforms;
};
2018-03-21 14:00:47 +00:00
passthru = {
2018-04-24 15:21:21 +01:00
compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" ];
2018-03-21 14:00:47 +00:00
};
2015-05-28 19:31:12 +01:00
}