tclPackages.zesty: init at 0.1

This commit is contained in:
Francesco Gazzetta
2025-06-25 13:05:02 +00:00
parent 6453095870
commit 498cd31711
@@ -0,0 +1,41 @@
{
lib,
mkTclDerivation,
fetchFromGitHub,
tcllib,
nix-update-script,
}:
mkTclDerivation rec {
pname = "zesty";
version = "0.1";
src = fetchFromGitHub {
owner = "nico-robert";
repo = "zesty";
tag = "v${version}";
hash = "sha256-XJdgS1Lf5B5VjGq2gztc5p3E7TLiibaYfU9f8r1wKOc=";
};
propagatedBuildInputs = [
tcllib
];
installPhase = ''
runHook preInstall
install -Dm644 -t $out/lib/zesty/ *.tcl
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Tcl library for rich terminal output";
homepage = "https://github.com/nico-robert/zesty";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fgaz ];
platforms = lib.platforms.all;
};
}