Files
nixpkgs/pkgs/by-name/t1/t1utils/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

37 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "t1utils";
version = "1.42";
src = fetchurl {
url = "https://www.lcdf.org/type/t1utils-${version}.tar.gz";
sha256 = "YYd5NbGYcETd/0u5CgUgDKcWRnijVeFwv18aVVbMnyk=";
};
meta = with lib; {
description = "Collection of simple Type 1 font manipulation programs";
longDescription = ''
t1utils is a collection of simple type-1 font manipulation programs.
Together, they allow you to convert between PFA (ASCII) and PFB (binary)
formats, disassemble PFA or PFB files into human-readable form,
reassemble them into PFA or PFB format. Additionally you can extract font
resources from a Macintosh font file or create a Macintosh Type 1 font
file from a PFA or PFB font.
'';
homepage = "https://www.lcdf.org/type/";
license = {
shortName = "Click"; # README.md says BSD-like, see LICENSE
url = "https://github.com/kohler/t1utils/blob/master/LICENSE";
free = true;
redistributable = true;
};
platforms = platforms.all;
maintainers = [ maintainers.bjornfor ];
};
}