2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-06-11 17:29:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-02 09:38:45 +00:00
|
|
|
pname = "t1utils";
|
2021-08-11 14:34:11 +00:00
|
|
|
version = "1.42";
|
2014-06-11 17:29:34 +00:00
|
|
|
|
2015-11-06 15:25:09 +00:00
|
|
|
src = fetchurl {
|
2021-08-11 11:25:48 +00:00
|
|
|
url = "https://www.lcdf.org/type/t1utils-${version}.tar.gz";
|
2021-08-11 14:34:11 +00:00
|
|
|
sha256 = "YYd5NbGYcETd/0u5CgUgDKcWRnijVeFwv18aVVbMnyk=";
|
2014-06-11 17:29:34 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-06-11 17:29:34 +00:00
|
|
|
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.
|
|
|
|
'';
|
2021-08-11 11:25:48 +00:00
|
|
|
homepage = "https://www.lcdf.org/type/";
|
2023-11-26 09:51:50 +00:00
|
|
|
license = {
|
|
|
|
shortName = "Click"; # README.md says BSD-like, see LICENSE
|
|
|
|
url = "https://github.com/kohler/t1utils/blob/master/LICENSE";
|
|
|
|
free = true;
|
|
|
|
redistributable = true;
|
|
|
|
};
|
2015-11-06 16:26:06 +00:00
|
|
|
platforms = platforms.all;
|
2014-06-11 17:29:34 +00:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|