summary refs log tree commit diff
path: root/pkgs/data/fonts/work-sans/default.nix
blob: 16a0e9ac021afeefc2c6d2755d3f606251c06237 (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
{ lib, fetchFromGitHub }:

let
  version = "1.6";
in fetchFromGitHub {
  name = "work-sans-${version}";

  owner = "weiweihuanghuang";
  repo = "Work-Sans";
  rev = "v${version}";

  postFetch = ''
    tar xf $downloadedFile --strip=1
    install -m444 -Dt $out/share/fonts/opentype/ fonts/desktop/*.otf
    install -m444 -Dt $out/share/fonts/truetype/ fonts/webfonts/ttf/*.ttf
    install -m444 -Dt $out/share/fonts/woff/     fonts/webfonts/woff/*.woff
    install -m444 -Dt $out/share/fonts/woff2/    fonts/webfonts/woff2/*.woff2
  '';

  sha256 = "01kjidk6zv80rqxapcdwhd9wxzrjfc6lj4gkf6dwa4sskw5x3b8a";

  meta = with lib; {
    description = "A grotesque sans";
    homepage = "https://weiweihuanghuang.github.io/Work-Sans/";
    license = licenses.ofl;
    maintainers = [ maintainers.marsam ];
    platforms = platforms.all;
  };
}