summary refs log tree commit diff
path: root/pkgs/data/fonts/norwester/default.nix
blob: cc2a2617f3440efbd942e63aa3f9baabdf6c8dd3 (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
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
  pname = "norwester";
  version = "1.2";
  name = "${pname}-${version}";

  src = fetchurl {
    url = "http://jamiewilson.io/norwester/assets/norwester.zip";
    sha256 = "0syg8ss7mpli4cbxvh3ld7qrlbhb2dfv3wchm765iw6ndc05g92d";
  };

  phases = [ "installPhase" ];

  buildInputs = [ unzip ];

  installPhase = ''
    mkdir -p $out/share/fonts/opentype
    unzip -D -j $src ${pname}-v${version}/${pname}.otf -d $out/share/fonts/opentype/
  '';

  meta = with stdenv.lib; {
    homepage = "http://jamiewilson.io/norwester";
    description = "A condensed geometric sans serif by Jamie Wilson";
    maintainers = with maintainers; [ leenaars ];
    license = licenses.ofl;
    platforms = platforms.all;
  };
}