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

50 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, coq, ncurses, which
, graphviz, withDoc ? false
, src, name, patches ? []
2015-05-28 15:09:05 +01:00
}:
2015-04-24 17:51:05 +01:00
stdenv.mkDerivation {
inherit name;
2015-05-28 15:09:05 +01:00
inherit src;
2015-04-24 17:51:05 +01:00
2015-05-28 15:09:05 +01:00
nativeBuildInputs = stdenv.lib.optionals withDoc [ graphviz ];
buildInputs = [ coq.ocaml coq.findlib coq.camlp5 ncurses which ];
2015-04-24 17:51:05 +01:00
propagatedBuildInputs = [ coq ];
enableParallelBuilding = true;
2015-05-28 15:09:05 +01:00
inherit patches;
2015-04-24 17:51:05 +01:00
preBuild = ''
2018-04-24 15:21:21 +01:00
patchShebangs etc/utils/ssrcoqdep || true
cd mathcomp/ssreflect
export COQBIN=${coq}/bin/
2015-04-24 17:51:05 +01:00
'';
installPhase = ''
make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
'';
2015-04-24 17:51:05 +01:00
postInstall = ''
# mkdir -p $out/bin
# cp -p bin/ssrcoq $out/bin
# cp -p bin/ssrcoq.byte $out/bin
2015-05-28 15:09:05 +01:00
'' + stdenv.lib.optionalString withDoc ''
mkdir -p $out/share/doc/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect/
cp -r html $out/share/doc/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect/
2015-04-24 17:51:05 +01:00
'';
meta = with stdenv.lib; {
homepage = http://ssr.msr-inria.inria.fr/;
license = licenses.cecill-b;
maintainers = with maintainers; [ vbgl 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-04-24 17:51:05 +01:00
}