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

28 lines
735 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2018-08-20 18:55:50 +03:00
let
majorVersion = "0";
minorVersion = "601";
pname = "tenderness";
in
2019-08-14 00:52:01 +03:00
fetchzip {
2018-08-20 18:55:50 +03:00
name = "${pname}-font-${majorVersion}.${minorVersion}";
url = "http://dotcolon.net/DL/font/${pname}_${majorVersion}${minorVersion}.zip";
sha256 = "0d88l5mzq0k63zsmb8d5w3hfqxy04vpv4j0j8nmj1xv6kikhhybh";
postFetch = ''
mkdir -p $out/share/fonts/opentype/${pname}
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
'';
meta = with lib; {
2018-08-20 18:55:50 +03:00
homepage = "http://dotcolon.net/font/${pname}/";
description = "Serif font designed by Sora Sagano with old-style figures";
platforms = platforms.all;
maintainers = with maintainers; [ leenaars ];
license = licenses.ofl;
};
}