nixpkgs/pkgs/data/fonts/yanone-kaffeesatz/default.nix
volth c9eb44eab3 data/fonts: cleanup
* make font derivations fixed-output where applicable
 * fix dead links
 * `stdenv.lib` -> `lib` where `stdenv` is not involved
 * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
2019-05-13 06:03:31 +00:00

23 lines
568 B
Nix

{ lib, fetchzip }:
fetchzip {
name = "yanone-kaffeesatz-2004";
url = https://yanone.de/2015/data/UIdownloads/Yanone%20Kaffeesatz.zip;
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
'';
sha256 = "190c4wx7avy3kp98lsyml7kc0jw7csf5n79af2ypbkhsadfsy8di";
meta = {
description = "The free font classic";
maintainers = with lib.maintainers; [ mt-caret ];
platforms = with lib.platforms; all;
homepage = https://yanone.de/fonts/kaffeesatz/;
license = lib.licenses.ofl;
};
}