summary refs log tree commit diff
path: root/pkgs/data/fonts/aurulent-sans/default.nix
blob: 1a83ce17646ed36508477a6fa2dd92f3dd6a337f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchzip}:

fetchzip rec {
  name = "aurulent-sans-0.1";

  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
  '';
  sha256 = "1l60psfv9x0x9qx9vp1qnhmck7a7kks385m5ycrd3d91irz1j5li";

  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;
    platforms = stdenv.lib.platforms.all;
  };
}