forked from mirrors/nixpkgs
t1utils: new package
t1utils is a collection of simple Type 1 font manipulation programs.
This commit is contained in:
parent
8d8c761606
commit
86d19319d6
28
pkgs/tools/misc/t1utils/default.nix
Normal file
28
pkgs/tools/misc/t1utils/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "t1utils-1.38";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.lcdf.org/type/${name}.tar.gz";
|
||||
sha256 = "1pnxpjabjyzfjrp319wsq4acxw99c8nnsaalbz7nwamj8kkim7zw";
|
||||
};
|
||||
|
||||
meta = with stdenv.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 = http://www.lcdf.org/type/;
|
||||
# README from tarball says "BSD-like" and points to non-existing LICENSE
|
||||
# file...
|
||||
license = "BSD-like";
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
}
|
|
@ -2114,6 +2114,8 @@ let
|
|||
|
||||
privoxy = callPackage ../tools/networking/privoxy { };
|
||||
|
||||
t1utils = callPackage ../tools/misc/t1utils { };
|
||||
|
||||
tarsnap = callPackage ../tools/backup/tarsnap { };
|
||||
|
||||
tcpcrypt = callPackage ../tools/security/tcpcrypt { };
|
||||
|
|
Loading…
Reference in a new issue