2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-06-11 18:29:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-11 15:44:28 +01:00
|
|
|
name = "t1utils-1.41";
|
2014-06-11 18:29:34 +01:00
|
|
|
|
2015-11-06 15:25:09 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.lcdf.org/type/${name}.tar.gz";
|
2017-09-11 15:44:28 +01:00
|
|
|
sha256 = "09rlc837dr69hyiiicha3il37mchsvz84qw8hnvb60lrh9zdsppw";
|
2014-06-11 18:29:34 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-06-11 18:29:34 +01: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 02:11:51 +01:00
|
|
|
homepage = "http://www.lcdf.org/type/";
|
2014-06-11 18:29:34 +01:00
|
|
|
# README from tarball says "BSD-like" and points to non-existing LICENSE
|
|
|
|
# file...
|
2014-06-19 05:19:00 +01: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 18:29:34 +01:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|