coqPackages_8_4.tlc: remove
This commit is contained in:
parent
f6284c76da
commit
c1efbbab96
|
@ -1,38 +0,0 @@
|
||||||
{stdenv, fetchsvn, coq}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
|
|
||||||
name = "coq-tlc-${coq.coq-version}";
|
|
||||||
|
|
||||||
src = fetchsvn {
|
|
||||||
url = svn://scm.gforge.inria.fr/svn/tlc/branches/v3.1;
|
|
||||||
rev = 240;
|
|
||||||
sha256 = "0mjnb6n9wzb13y2ix9cvd6irzd9d2gj8dcm2x71wgan0jcskxadm";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ coq.ocaml coq.camlp5 ];
|
|
||||||
propagatedBuildInputs = [ coq ];
|
|
||||||
|
|
||||||
preConfigure = ''
|
|
||||||
patch Makefile <<EOF
|
|
||||||
105c105
|
|
||||||
< \$(COQC) \$<
|
|
||||||
---
|
|
||||||
> \$(COQC) -R . Tlc \$<
|
|
||||||
EOF
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
COQLIB=$out/lib/coq/${coq.coq-version}/
|
|
||||||
mkdir -p $COQLIB/user-contrib/Tlc
|
|
||||||
cp -p *.vo $COQLIB/user-contrib/Tlc
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = http://www.chargueraud.org/softs/tlc/;
|
|
||||||
description = "A general purpose Coq library that provides an alternative to Coq's standard library";
|
|
||||||
maintainers = with maintainers; [ jwiegley ];
|
|
||||||
platforms = coq.meta.platforms;
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
|
@ -18806,7 +18806,6 @@ with pkgs;
|
||||||
in
|
in
|
||||||
recurseIntoAttrs contribs;
|
recurseIntoAttrs contribs;
|
||||||
|
|
||||||
tlc = callPackage ../development/coq-modules/tlc {};
|
|
||||||
unimath = callPackage ../development/coq-modules/unimath {};
|
unimath = callPackage ../development/coq-modules/unimath {};
|
||||||
ynot = callPackage ../development/coq-modules/ynot {};
|
ynot = callPackage ../development/coq-modules/ynot {};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue