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

26 lines
779 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2017-08-10 19:43:49 +00:00
let
version = "2.0";
2017-08-10 19:43:49 +00:00
in fetchzip rec {
name = "quattrocento-sans-${version}";
url = "http://web.archive.org/web/20170709124317/http://www.impallari.com/media/releases/quattrocento-sans-v${version}.zip";
2017-08-10 19:43:49 +00:00
postFetch = ''
mkdir -p $out/share/{fonts,doc}
unzip -j $downloadedFile '*/QuattrocentoSans*.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 = "0g8hnn92ks4y0jbizwj7yfa097lk887wqkqpqjdmc09sd2n44343";
meta = with lib; {
homepage = http://www.impallari.com/quattrocentosans/;
description = "A classic, elegant and sober sans-serif typeface";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [maintainers.rycee];
};
}