mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
t1utils: switch to pname + version
This commit is contained in:
parent
db805c9d36
commit
61fd76aabe
@ -1,10 +1,11 @@
|
|||||||
{ lib, stdenv, fetchurl }:
|
{ lib, stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "t1utils-1.42";
|
pname = "t1utils";
|
||||||
|
version = "1.42";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.lcdf.org/type/${name}.tar.gz";
|
url = "https://www.lcdf.org/type/t1utils-${version}.tar.gz";
|
||||||
sha256 = "sha256-YYd5NbGYcETd/0u5CgUgDKcWRnijVeFwv18aVVbMnyk=";
|
sha256 = "sha256-YYd5NbGYcETd/0u5CgUgDKcWRnijVeFwv18aVVbMnyk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -18,7 +19,7 @@ stdenv.mkDerivation rec {
|
|||||||
resources from a Macintosh font file or create a Macintosh Type 1 font
|
resources from a Macintosh font file or create a Macintosh Type 1 font
|
||||||
file from a PFA or PFB font.
|
file from a PFA or PFB font.
|
||||||
'';
|
'';
|
||||||
homepage = "http://www.lcdf.org/type/";
|
homepage = "https://www.lcdf.org/type/";
|
||||||
# README from tarball says "BSD-like" and points to non-existing LICENSE
|
# README from tarball says "BSD-like" and points to non-existing LICENSE
|
||||||
# file...
|
# file...
|
||||||
license = "Click"; # MIT with extra clause, https://github.com/kohler/t1utils/blob/master/LICENSE
|
license = "Click"; # MIT with extra clause, https://github.com/kohler/t1utils/blob/master/LICENSE
|
||||||
|
Loading…
Reference in New Issue
Block a user