summary refs log tree commit diff
path: root/pkgs/data/fonts/shrikhand/default.nix
blob: 034c36a63cec5dad0c7404ff86a7844faa1b5558 (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 }:

let
  version = "2016-03-03";
in fetchzip {
  name = "shrikhand-${version}";

  url = https://github.com/jonpinhorn/shrikhand/raw/c11c9b0720fba977fad7cb4f339ebacdba1d1394/build/Shrikhand-Regular.ttf;

  postFetch = "install -D -m644 $downloadedFile $out/share/fonts/truetype/Shrikhand-Regular.ttf";

  sha256 = "0s54k9cs1g2yz6lwg5gakqb12vg5qkfdz3pc8mh7mib2s6q926hs";

  meta = with stdenv.lib; {
    homepage = https://jonpinhorn.github.io/shrikhand/;
    description = "A vibrant and playful typeface for both Latin and Gujarati writing systems";
    maintainers = with maintainers; [ sternenseemann ];
    platforms = platforms.all;
    license = licenses.ofl;
  };
}