2021-05-22 02:08:31 +02:00
|
|
|
{ lib, fetchurl, tcl, openssl }:
|
2012-06-04 20:08:56 +02:00
|
|
|
|
2021-05-01 00:50:54 +02:00
|
|
|
tcl.mkTclDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tcltls";
|
2021-08-22 04:40:32 +02:00
|
|
|
version = "1.7.22";
|
2012-06-04 20:08:56 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-22 00:38:52 +02:00
|
|
|
url = "https://core.tcl-lang.org/tcltls/uv/tcltls-${version}.tar.gz";
|
2021-08-22 04:40:32 +02:00
|
|
|
sha256 = "sha256-6E4reideyCxKqp0bH5eG2+Q1jIFekXU5/+f2Z/9Lw7Q=";
|
2012-06-04 20:08:56 +02:00
|
|
|
};
|
|
|
|
|
2021-05-01 00:50:54 +02:00
|
|
|
buildInputs = [ openssl ];
|
2016-08-30 20:49:34 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-ssl-dir=${openssl.dev}"
|
|
|
|
];
|
|
|
|
|
2012-09-09 06:38:25 +02:00
|
|
|
meta = {
|
2021-05-22 00:38:52 +02:00
|
|
|
homepage = "https://core.tcl-lang.org/tcltls/index";
|
2012-09-09 06:38:25 +02:00
|
|
|
description = "An OpenSSL / RSA-bsafe Tcl extension";
|
2021-05-22 00:38:52 +02:00
|
|
|
maintainers = [ lib.maintainers.agbrooks ];
|
2021-01-21 18:00:13 +01:00
|
|
|
license = lib.licenses.tcltk;
|
|
|
|
platforms = lib.platforms.unix;
|
2012-09-09 06:38:25 +02:00
|
|
|
};
|
2012-06-04 20:08:56 +02:00
|
|
|
}
|