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

26 lines
746 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2017-08-10 19:43:49 +00:00
let
version = "1.1";
2017-08-10 19:43:49 +00:00
in fetchzip rec {
name = "quattrocento-${version}";
url = "http://web.archive.org/web/20170707001804/http://www.impallari.com/media/releases/quattrocento-v${version}.zip";
2017-08-10 19:43:49 +00:00
postFetch = ''
mkdir -p $out/share/{fonts,doc}
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*FONTLOG.txt -d $out/share/doc/${name}
'';
2017-08-10 19:43:49 +00:00
sha256 = "0f8l19y61y20sszn8ni8h9kgl0zy1gyzychg22z5k93ip4h7kfd0";
meta = with lib; {
homepage = "http://www.impallari.com/quattrocento/";
description = "A classic, elegant, sober and strong serif typeface";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [maintainers.rycee];
};
}