coqPackages.tlc: init at 20171206

TLC is a general purpose Coq library that provides an alternative to Coq's
standard library.

Homepage: http://www.chargueraud.org/softs/tlc/
This commit is contained in:
Vincent Laporte 2017-12-19 14:26:11 +00:00 committed by Vincent Laporte
parent 5128f43b28
commit a9d066a990
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, fetchurl, coq }:
stdenv.mkDerivation rec {
version = "20171206";
name = "coq${coq.coq-version}-tlc-${version}";
src = fetchurl {
url = "http://tlc.gforge.inria.fr/releases/tlc-${version}.tar.gz";
sha256 = "1wc44qb5zmarafp56gdrbka8gllipqna9cj0a6d99jzb361xg4mf";
};
buildInputs = [ coq ];
installFlags = "CONTRIB=$(out)/lib/coq/${coq.coq-version}/user-contrib";
meta = {
homepage = "http://www.chargueraud.org/softs/tlc/";
description = "A non-constructive library for Coq";
license = stdenv.lib.licenses.free;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (coq.meta) platforms;
};
passthru = {
compatibleCoqVersions = v: stdenv.lib.versionAtLeast v "8.6";
};
}

View file

@ -36,6 +36,7 @@ let
paco = callPackage ../development/coq-modules/paco {};
QuickChick = callPackage ../development/coq-modules/QuickChick {};
ssreflect = callPackage ../development/coq-modules/ssreflect { };
tlc = callPackage ../development/coq-modules/tlc {};
};
filterCoqPackages = coq: