nixpkgs/pkgs/data/fonts/comic-neue/default.nix

37 lines
1.4 KiB
Nix
Raw Normal View History

2017-08-10 22:43:49 +03:00
{ stdenv, fetchzip }:
2014-08-19 17:03:21 +04:00
2017-08-10 22:43:49 +03:00
let
2015-04-20 09:32:12 +03:00
version = "2.2";
2017-08-10 22:43:49 +03:00
in fetchzip rec {
name = "comic-neue-${version}";
2014-08-19 17:03:21 +04:00
2017-08-10 22:43:49 +03:00
url = "http://comicneue.com/${name}.zip";
2014-08-19 17:03:21 +04:00
2017-08-10 22:43:49 +03:00
postFetch = ''
mkdir -vp $out/share/{doc,fonts}
unzip -j $downloadedFile comic-neue-2.2/\*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile comic-neue-2.2/\*.ttf -d $out/share/fonts/truetype
unzip -j $downloadedFile comic-neue-2.2/\*.eot -d $out/share/fonts/EOT
unzip -j $downloadedFile comic-neue-2.2/\*.woff -d $out/share/fonts/WOFF
unzip -j $downloadedFile comic-neue-2.2/\*.woff2 -d $out/share/fonts/WOFF2
unzip -j $downloadedFile comic-neue-2.2/\*.pdf comic-neue-2.2/FONTLOG.txt comic-neue-2.2/OFL-FAQ.txt comic-neue-2.2/SIL-License.txt -d $out/share/doc/${name}
2014-08-19 17:03:21 +04:00
'';
2017-08-10 22:43:49 +03:00
sha256 = "1yypq5aqqzv3q1c6vx5130mi2iwihzzvrawhwqpwsfjl0p25sq9q";
2014-08-19 17:03:21 +04:00
meta = with stdenv.lib; {
homepage = http://comicneue.com/;
description = "A casual type face: Make your lemonade stand look like a fortune 500 company";
longDescription = ''
It is inspired by Comic Sans but more regular. The font was
designed by Craig Rozynski. It is available in two variants:
Comic Neue and Comic Neue Angular. The former having round and
the latter angular terminals. Both variants come in Light,
Regular, and Bold weights with Oblique variants.
'';
2015-04-20 09:32:12 +03:00
license = licenses.ofl;
2014-08-19 17:03:21 +04:00
platforms = platforms.all;
2015-04-20 09:32:12 +03:00
maintainers = [ maintainers.AndersonTorres ];
2014-08-19 17:03:21 +04:00
};
}