nixpkgs-suyu/pkgs/data/fonts/aurulent-sans/default.nix

22 lines
671 B
Nix
Raw Normal View History

2017-08-10 21:43:49 +02:00
{stdenv, fetchzip}:
2014-06-18 02:12:10 +02:00
2017-08-10 21:43:49 +02:00
fetchzip rec {
2014-06-18 02:12:10 +02:00
name = "aurulent-sans-0.1";
2017-08-10 21:43:49 +02:00
url = "https://github.com/deepfire/hartke-aurulent-sans/archive/${name}.zip";
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
'';
2017-08-10 21:43:49 +02:00
sha256 = "1l60psfv9x0x9qx9vp1qnhmck7a7kks385m5ycrd3d91irz1j5li";
2014-06-18 02:12:10 +02:00
meta = {
description = "Aurulent Sans";
longDescription = "Aurulent Sans is a humanist sans serif intended to be used as an interface font.";
homepage = http://delubrum.org/;
maintainers = with stdenv.lib.maintainers; [ deepfire ];
license = stdenv.lib.licenses.ofl;
2014-06-18 02:12:10 +02:00
platforms = stdenv.lib.platforms.all;
};
}