3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/fonts/route159/default.nix

28 lines
701 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2018-08-20 01:02:21 +01:00
let
majorVersion = "1";
minorVersion = "10";
pname = "route159";
in
2019-08-13 22:52:01 +01:00
fetchzip {
2018-08-20 01:02:21 +01:00
name = "${pname}-font-${majorVersion}.${minorVersion}";
url = "http://dotcolon.net/DL/font/${pname}_${majorVersion}${minorVersion}.zip";
sha256 = "1nv5csg73arvvwpac7ylh4j9n0s3qp79rbv2s4jvs2bf6gqhsq7h";
postFetch = ''
mkdir -p $out/share/fonts/opentype/${pname}
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
'';
meta = with lib; {
2018-09-08 17:14:53 +01:00
homepage = "http://dotcolon.net/font/${pname}/";
2018-08-20 01:02:21 +01:00
description = "A weighted sans serif font";
platforms = platforms.all;
maintainers = with maintainers; [ leenaars ];
license = licenses.ofl;
};
}