lol
at 18.03-beta 28 lines 1.1 kB view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "t1utils-1.41"; 5 6 src = fetchurl { 7 url = "http://www.lcdf.org/type/${name}.tar.gz"; 8 sha256 = "09rlc837dr69hyiiicha3il37mchsvz84qw8hnvb60lrh9zdsppw"; 9 }; 10 11 meta = with stdenv.lib; { 12 description = "Collection of simple Type 1 font manipulation programs"; 13 longDescription = '' 14 t1utils is a collection of simple type-1 font manipulation programs. 15 Together, they allow you to convert between PFA (ASCII) and PFB (binary) 16 formats, disassemble PFA or PFB files into human-readable form, 17 reassemble them into PFA or PFB format. Additionally you can extract font 18 resources from a Macintosh font file or create a Macintosh Type 1 font 19 file from a PFA or PFB font. 20 ''; 21 homepage = http://www.lcdf.org/type/; 22 # README from tarball says "BSD-like" and points to non-existing LICENSE 23 # file... 24 license = "Click"; # MIT with extra clause, https://github.com/kohler/t1utils/blob/master/LICENSE 25 platforms = platforms.all; 26 maintainers = [ maintainers.bjornfor ]; 27 }; 28}