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

47 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, coq, ncurses
2015-05-28 16:09:05 +02:00
, graphviz, withDoc ? true
, src, patches ? []
}:
2015-04-24 18:51:05 +02:00
stdenv.mkDerivation {
name = "coq-ssreflect-1.5-${coq.coq-version}";
2015-04-24 18:51:05 +02:00
2015-05-28 16:09:05 +02:00
inherit src;
2015-04-24 18:51:05 +02:00
2015-05-28 16:09:05 +02:00
nativeBuildInputs = stdenv.lib.optionals withDoc [ graphviz ];
buildInputs = [ coq.ocaml coq.camlp5 ncurses ];
2015-04-24 18:51:05 +02:00
propagatedBuildInputs = [ coq ];
enableParallelBuilding = true;
2015-05-28 16:09:05 +02:00
inherit patches;
2015-04-24 18:51:05 +02:00
postPatch = ''
# Permit building of the ssrcoq statically-bound executable
sed -i 's/^#-custom/-custom/' Make
sed -i 's/^#SSRCOQ/SSRCOQ/' Make
'';
2015-05-28 16:09:05 +02:00
buildFlags = stdenv.lib.optionalString withDoc "doc";
2015-04-24 18:51:05 +02:00
installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";
postInstall = ''
mkdir -p $out/bin
cp -p bin/ssrcoq $out/bin
cp -p bin/ssrcoq.byte $out/bin
2015-05-28 16:09:05 +02:00
'' + stdenv.lib.optionalString withDoc ''
mkdir -p $out/share/doc/coq/${coq.coq-version}/user-contrib/Ssreflect/
cp -r html $out/share/doc/coq/${coq.coq-version}/user-contrib/Ssreflect/
2015-04-24 18:51:05 +02: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;
};
}