nixpkgs/pkgs/by-name/pd/pdf4tcl/package.nix
2024-08-03 22:56:11 +02:00

30 lines
638 B
Nix

{
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 ];
};
}