summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-06-11 19:29:34 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-06-11 21:17:49 +0200
commit86d19319d63e8ac8ae30f1e89a09370e2f565245 (patch)
tree3ee59949f152fcccb9226807fc419cb902abb9ea /pkgs
parent8d8c761606cd93134b51a620bc55df2930f03ca7 (diff)
downloadnixlib-86d19319d63e8ac8ae30f1e89a09370e2f565245.tar
nixlib-86d19319d63e8ac8ae30f1e89a09370e2f565245.tar.gz
nixlib-86d19319d63e8ac8ae30f1e89a09370e2f565245.tar.bz2
nixlib-86d19319d63e8ac8ae30f1e89a09370e2f565245.tar.lz
nixlib-86d19319d63e8ac8ae30f1e89a09370e2f565245.tar.xz
nixlib-86d19319d63e8ac8ae30f1e89a09370e2f565245.tar.zst
nixlib-86d19319d63e8ac8ae30f1e89a09370e2f565245.zip
t1utils: new package
t1utils is a collection of simple Type 1 font manipulation programs.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/t1utils/default.nix28
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/misc/t1utils/default.nix b/pkgs/tools/misc/t1utils/default.nix
new file mode 100644
index 000000000000..607674051549
--- /dev/null
+++ b/pkgs/tools/misc/t1utils/default.nix
@@ -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 ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 65390f09a424..14a6cde1bf7d 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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 { };