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

stdenv.mkDerivation rec {
  name = "aurulent-sans-0.1";
  src = fetchgit {
    url = "https://github.com/deepfire/hartke-aurulent-sans.git";
    rev = "refs/tags/${name}";
    sha256 = "01hvpvbrks40g9k1xr2f1gxnd5wd0sxidgfbwrm94pdi1a36xxrk";
  };
  buildPhase = "true";
  installPhase = "
    fontDir=$out/share/fonts/opentype
    mkdir -p $fontDir
    cp *.otf $fontDir
  ";
  meta = {
    description = "Aurulent Sans";
    longDescription = "Aurulent Sans is a humanist sans serif intended to be used as an interface font.";
    homepage = http://delubrum.org/;
    license = "SIL";
    platforms = stdenv.lib.platforms.all;
  };
}