summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-06-12 09:15:11 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-06-12 09:15:11 +0200
commitde12094b0e97e36485a26abce86a014d4bddd0de (patch)
treedd9db99a798674258d2f46a6068b910505fa6069 /pkgs/tools/misc
parente4dc3f8ae3665f005b241edee76bfbcde7c1b1c1 (diff)
parentaf3d448d335cd22355b6b84857520cfa5cfb380e (diff)
downloadnixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.gz
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.bz2
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.lz
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.xz
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.tar.zst
nixlib-de12094b0e97e36485a26abce86a014d4bddd0de.zip
Merge recent master
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/t1utils/default.nix28
1 files changed, 28 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 ];
+  };
+}