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,26 @@
{stdenv, fetchgit, coq}:
stdenv.mkDerivation rec {
name = "coq-ext-lib-${coq.coq-version}-${version}";
version = "c2c71a2a";
src = fetchgit {
url = git://github.com/coq-ext-lib/coq-ext-lib.git;
rev = "c2c71a2a90ac87f2ceb311a6da53a6796b916816";
sha256 = "01sihw3nmvvpc8viwyr01qnqifdcmlg016034xmrfmv863yp8c4g";
};
buildInputs = [ coq.ocaml coq.camlp5 ];
propagatedBuildInputs = [ coq ];
installFlags = "COQLIB=$out/lib/coq/${coq.coq-version}";
meta = with stdenv.lib; {
homepage = https://github.com/coq-ext-lib/coq-ext-lib;
description = "A collection of theories and plugins that may be useful in other Coq developments";
maintainers = with maintainers; [ jwiegley ];
platforms = coq.meta.platforms;
};
}