nixpkgs/pkgs/development/coq-modules/paco/default.nix
Joachim Fasting bf7ad2d84f meta.description fixups
Mostly scripted substitutions with a couple of subjective enhancements.
2015-04-30 18:17:42 +02:00

32 lines
789 B
Nix

{stdenv, fetchurl, coq, unzip}:
stdenv.mkDerivation rec {
name = "coq-paco-${coq.coq-version}-${version}";
version = "1.2.7";
src = fetchurl {
url = "http://plv.mpi-sws.org/paco/paco-${version}.zip";
sha256 = "010fs74c0cmb9sz5dmrgzg4pmb2mgwia4gm0g9l7j2fq5xxcschb";
};
buildInputs = [ coq.ocaml coq.camlp5 unzip ];
propagatedBuildInputs = [ coq ];
preBuild = "cd src";
installPhase = ''
COQLIB=$out/lib/coq/${coq.coq-version}/
mkdir -p $COQLIB/user-contrib/Paco
cp -pR *.vo $COQLIB/user-contrib/Paco
'';
meta = with stdenv.lib; {
homepage = http://plv.mpi-sws.org/paco/;
description = "A Coq library implementing parameterized coinduction";
maintainers = with maintainers; [ jwiegley ];
platforms = coq.meta.platforms;
};
}