2019-05-13 01:55:32 +00:00
|
|
|
{ lib, fetchFromGitHub }:
|
2014-06-18 00:12:10 +00:00
|
|
|
|
2019-05-13 01:55:32 +00:00
|
|
|
fetchFromGitHub rec {
|
2014-06-18 00:12:10 +00:00
|
|
|
name = "aurulent-sans-0.1";
|
2019-05-13 01:55:32 +00:00
|
|
|
owner = "deepfire";
|
|
|
|
repo = "hartke-aurulent-sans";
|
|
|
|
rev = name;
|
2017-08-10 19:43:49 +00:00
|
|
|
postFetch = ''
|
|
|
|
mkdir -p $out/share/fonts
|
2019-05-13 01:55:32 +00:00
|
|
|
tar xf $downloadedFile -C $out/share/fonts --strip=1
|
2015-09-23 20:44:28 +00:00
|
|
|
'';
|
2017-08-10 19:43:49 +00:00
|
|
|
sha256 = "1l60psfv9x0x9qx9vp1qnhmck7a7kks385m5ycrd3d91irz1j5li";
|
2015-09-23 20:44:28 +00:00
|
|
|
|
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.";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://delubrum.org/";
|
2019-05-13 01:55:32 +00:00
|
|
|
maintainers = with lib.maintainers; [ deepfire ];
|
|
|
|
license = lib.licenses.ofl;
|
|
|
|
platforms = lib.platforms.all;
|
2014-06-18 00:12:10 +00:00
|
|
|
};
|
|
|
|
}
|