summary refs log tree commit diff
path: root/pkgs/data/fonts/ibm-plex/default.nix
blob: 573cb432085eb284d0170addedd34e76fe1dbf9c (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
{ lib, fetchFromGitHub }:

let version = "0.5.3";
in fetchFromGitHub rec {
  name = "ibm-plex-${version}";

  owner = "IBM";
  repo = "type";
  rev = "v${version}";
  sha256 = "1im7sid3qsk4wnm0yhq9h7i50bz46jksqxv60svdfnsrwq0krd1h";

  postFetch = ''
    tar --strip-components=1 -xzvf $downloadedFile
    mkdir -p $out/share/fonts/opentype
    cp fonts/*/desktop/mac/*.otf $out/share/fonts/opentype/
  '';

  meta = with lib; {
    description = "IBM Plex Typeface";
    homepage = https://ibm.github.io/type/;
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = [ maintainers.romildo ];
  };
}