aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/data/fonts/redhat-official/default.nix
blob: 37ca9db9fa0b1718a0881e18e9e7d1c5f0ad16ad (plain)
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
{ lib, fetchFromGitHub }:
let
  version = "2.3.2";
in
fetchFromGitHub {
  name = "redhat-official-${version}";

  owner = "RedHatOfficial";
  repo = "RedHatFont";
  rev = version;

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

  sha256 = "1afvxmgif61hb17g8inmxvq30vkzwh30mydlqpf0zgvaaz8qdwmv";

  meta = with lib; {
    homepage = "https://github.com/RedHatOfficial/RedHatFont";
    description = "Red Hat's Open Source Fonts - Red Hat Display and Red Hat Text";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = with maintainers; [ dtzWill ];
  };
}