pdf4tcl: init at 0.9.4

This commit is contained in:
Francesco Gazzetta
2024-08-03 22:56:11 +02:00
parent f940d69b27
commit 3fe77df3a7
+29
View File
@@ -0,0 +1,29 @@
{
lib,
tcl,
fetchzip,
}:
tcl.mkTclDerivation rec {
pname = "pdf4tcl";
version = "0.9.4";
src = fetchzip {
url = "mirror://sourceforge/pdf4tcl/pdf4tcl${lib.replaceStrings [ "." ] [ "" ] version}.tar.gz";
hash = "sha256-lmSt0UQDfUef8S7zevAvvbeWB/vd6jLbKz7Y5A7xJm4=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/lib/pdf4tcl
cp -r * $out/lib/pdf4tcl/
runHook postInstall
'';
meta = {
description = "Tcl package for generating PDF files";
homepage = "https://pdf4tcl.sourceforge.net/";
license = lib.licenses.tcltk;
maintainers = with lib.maintainers; [ fgaz ];
};
}