mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
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:
parent
5128f43b28
commit
a9d066a990
27
pkgs/development/coq-modules/tlc/default.nix
Normal file
27
pkgs/development/coq-modules/tlc/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user