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

23 lines
645 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
2014-06-18 00:12:10 +00:00
fetchFromGitHub rec {
2014-06-18 00:12:10 +00:00
name = "aurulent-sans-0.1";
owner = "deepfire";
repo = "hartke-aurulent-sans";
rev = name;
2017-08-10 19:43:49 +00:00
postFetch = ''
mkdir -p $out/share/fonts
tar xf $downloadedFile -C $out/share/fonts --strip=1
'';
2017-08-10 19:43:49 +00:00
sha256 = "1l60psfv9x0x9qx9vp1qnhmck7a7kks385m5ycrd3d91irz1j5li";
2014-06-18 00:12:10 +00: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 lib.maintainers; [ deepfire ];
license = lib.licenses.ofl;
platforms = lib.platforms.all;
2014-06-18 00:12:10 +00:00
};
}