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";
|
|
|
|
version = "1.41";
|
2014-06-11 17:29:34 +00:00
|
|
|
|
2015-11-06 15:25:09 +00:00
|
|
|
src = fetchurl {
|
2021-08-02 09:38:45 +00:00
|
|
|
url = "https://www.lcdf.org/type/t1utils-${version}.tar.gz";
|
2017-09-11 14:44:28 +00:00
|
|
|
sha256 = "09rlc837dr69hyiiicha3il37mchsvz84qw8hnvb60lrh9zdsppw";
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.lcdf.org/type/";
|
2014-06-11 17:29:34 +00:00
|
|
|
# README from tarball says "BSD-like" and points to non-existing LICENSE
|
|
|
|
# file...
|
2014-06-19 04:19:00 +00:00
|
|
|
license = "Click"; # MIT with extra clause, https://github.com/kohler/t1utils/blob/master/LICENSE
|
2015-11-06 16:26:06 +00:00
|
|
|
platforms = platforms.all;
|
2014-06-11 17:29:34 +00:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|