Merge pull request #332074 from fgaz/pdf4tcl/init

This commit is contained in:
Sandro
2024-08-22 13:39:59 +02:00
committed by GitHub
+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 ];
};
}