coqPackages.[coq-ext-lib,heq,paco,ynot]: new expressions

This commit is contained in:
John Wiegley
2014-10-11 17:24:59 -05:00
parent 0a259ea888
commit 904bee0c46
7 changed files with 127 additions and 2 deletions
@@ -0,0 +1,27 @@
{stdenv, fetchurl, coq, unzip}:
stdenv.mkDerivation rec {
name = "coq-heq-${coq.coq-version}-${version}";
version = "0.92";
src = fetchurl {
url = "https://www.mpi-sws.org/~gil/Heq/download/Heq-${version}.zip";
sha256 = "03y71c4qs6cmy3s2hjs05g7pcgk9sqma6flj15394yyxbvr9is1p";
};
buildInputs = [ coq.ocaml coq.camlp5 unzip ];
propagatedBuildInputs = [ coq ];
preBuild = "cd src";
installFlags = "COQLIB=$out/lib/coq/${coq.coq-version}";
meta = with stdenv.lib; {
homepage = https://www.mpi-sws.org/~gil/Heq/;
description = "Heq : a Coq library for Heterogeneous Equality";
maintainers = with maintainers; [ jwiegley ];
platforms = coq.meta.platforms;
};
}