perlPackages.Tcl: init at 1.27

This commit is contained in:
Will Cohen 2022-05-26 13:05:42 -04:00
parent f5f11a90a4
commit 7b3ac6e3f9

View file

@ -6,7 +6,7 @@
be almost as much code as the function itself. */
{ config
, stdenv, lib, buildPackages, pkgs
, stdenv, lib, buildPackages, pkgs, darwin
, fetchurl, fetchgit, fetchpatch, fetchFromGitHub, fetchFromGitLab
, perl, overrides, buildPerl, shortenPerlShebang
, nixosTests
@ -21009,6 +21009,28 @@ let
};
};
Tcl = buildPerlPackage {
pname = "Tcl";
version = "1.27";
src = fetchurl {
url = "mirror://cpan/authors/id/V/VK/VKON/Tcl-1.27.tar.gz";
sha256 = "sha256-+DhYd6Sp7Z89OQPS0PfNcPrDzmgyxg9gCmghzuP7WHI=";
};
propagatedBuildInputs = [
pkgs.bwidget
pkgs.tcl
pkgs.tix
pkgs.tk
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices ];
makeMakerFlags = lib.optionalString stdenv.isLinux
"--tclsh=${pkgs.tcl}/bin/tclsh --nousestubs";
meta = {
description = "Tcl extension module for perl";
license = with lib.licenses; [ artistic1 gpl1Plus ];
};
};
TemplatePluginAutoformat = buildPerlPackage {
pname = "Template-Plugin-Autoformat";
version = "2.77";