nixpkgs/pkgs/tools/misc/t1utils/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

29 lines
1.1 KiB
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "t1utils-1.41";
src = fetchurl {
url = "https://www.lcdf.org/type/${name}.tar.gz";
sha256 = "09rlc837dr69hyiiicha3il37mchsvz84qw8hnvb60lrh9zdsppw";
};
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 = "Click"; # MIT with extra clause, https://github.com/kohler/t1utils/blob/master/LICENSE
platforms = platforms.all;
maintainers = [ maintainers.bjornfor ];
};
}