nixpkgs/pkgs/by-name/t1/t1utils/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

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