about summary refs log tree commit diff
path: root/pkgs/data/fonts/knewave/default.nix
blob: 27def22718029f080e53aaa067df4cf9aba566e8 (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
24
25
26
27
28
29
30
31
32
{ lib, fetchFromGitHub, stdenvNoCC }:

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "knewave";
  version = "2012-07-30";

  src = fetchFromGitHub {
    owner = "theleagueof";
    repo = finalAttrs.pname;
    rev = "f335d5ff1f12e4acf97d4208e1c37b4d386e57fb";
    hash = "sha256-SaJU2GlxU7V3iJNQzFKg1YugaPsiJuSZpC8NCqtWyz0=";
  };

  installPhase = ''
    runHook preInstall

    install -D -m444 -t $out/share/fonts/truetype $src/*.ttf
    install -D -m444 -t $out/share/fonts/opentype $src/*.otf

    runHook postInstall
  '';

  meta = {
    description = " A bold, painted face for the rocker within";
    longDescription = ''
      Knewave is bold, painted face. Get it? Git it.
    '';
    homepage = "https://www.theleagueofmoveabletype.com/knewave";
    license = lib.licenses.ofl;
    maintainers = with lib.maintainers; [ minijackson ];
  };
})