nixpkgs/pkgs/data/fonts/paratype-pt/sans.nix
2017-08-11 14:26:03 +00:00

30 lines
773 B
Nix

{ stdenv, fetchzip }:
fetchzip rec {
name = "paratype-pt-sans";
url = "http://www.paratype.ru/uni/public/PTSans.zip";
postFetch = ''
mkdir -p $out/share/{doc,fonts}
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
unzip -j $downloadedFile \*.txt -d $out/share/doc/paratype
'';
sha256 = "01fkd417gv98jf3a6zyfi9w2dkqsbddy1vacga2672yf0kh1z1r0";
meta = with stdenv.lib; {
homepage = http://www.paratype.ru/public/;
description = "An open Paratype font";
license = "Open Paratype license";
# no commercial distribution of the font on its own
# must rename on modification
# http://www.paratype.ru/public/pt_openlicense.asp
platforms = platforms.all;
maintainers = with maintainers; [ raskin ];
};
}