nixpkgs/pkgs/development/libraries/tcltls/default.nix

26 lines
614 B
Nix
Raw Normal View History

2021-05-22 02:08:31 +02:00
{ lib, fetchurl, tcl, openssl }:
2012-06-04 20:08:56 +02:00
tcl.mkTclDerivation rec {
pname = "tcltls";
2021-08-22 04:40:32 +02:00
version = "1.7.22";
2012-06-04 20:08:56 +02:00
src = fetchurl {
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
};
buildInputs = [ openssl ];
configureFlags = [
"--with-ssl-dir=${openssl.dev}"
];
meta = {
homepage = "https://core.tcl-lang.org/tcltls/index";
description = "An OpenSSL / RSA-bsafe Tcl extension";
maintainers = [ lib.maintainers.agbrooks ];
license = lib.licenses.tcltk;
platforms = lib.platforms.unix;
};
2012-06-04 20:08:56 +02:00
}