mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
26 lines
614 B
Nix
26 lines
614 B
Nix
{ lib, fetchurl, tcl, openssl }:
|
|
|
|
tcl.mkTclDerivation rec {
|
|
pname = "tcltls";
|
|
version = "1.7.22";
|
|
|
|
src = fetchurl {
|
|
url = "https://core.tcl-lang.org/tcltls/uv/tcltls-${version}.tar.gz";
|
|
sha256 = "sha256-6E4reideyCxKqp0bH5eG2+Q1jIFekXU5/+f2Z/9Lw7Q=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|