nixpkgs/pkgs/data/fonts/penna/default.nix

33 lines
869 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2018-08-20 17:34:54 +03:00
let
majorVersion = "0";
minorVersion = "10";
pname = "penna";
in
2019-08-14 00:52:01 +03:00
fetchzip {
2018-08-20 17:34:54 +03:00
name = "${pname}-font-${majorVersion}.${minorVersion}";
url = "http://dotcolon.net/DL/font/${pname}.zip";
sha256 = "0hk15yndm56l6rbdykpkry2flffx0567mgjcqcnsx1iyzwwla5km";
postFetch = ''
mkdir -p $out/share/fonts/opentype/${pname}
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
'';
meta = with lib; {
2018-09-08 19:14:53 +03:00
homepage = "http://dotcolon.net/font/${pname}/";
2018-08-20 17:34:54 +03:00
description = "Geometric sans serif designed by Sora Sagano";
longDescription = ''
Penna is a geometric sans serif designed by Sora Sagano,
with outsized counters in the uppercase and a lowercase
with a small x-height.
'';
platforms = platforms.all;
maintainers = with maintainers; [ leenaars ];
license = licenses.cc0;
};
}