about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/steam/fonts.nix
blob: 9cf68f2c29b052b7397dba1fe25a0747f1638524 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation {
  name = "steam-fonts-1";

  src = fetchurl {
    url = "https://support.steampowered.com/downloads/1974-YFKL-4947/SteamFonts.zip";
    sha256 = "1cgygmwich5f1jhhbmbkkpnzasjl8gy36xln76n6r2gjh6awqfx0";
  };

  nativeBuildInputs = [ unzip ];

  sourceRoot = ".";

  installPhase = ''
    mkdir -p $out/share/fonts/truetype
    cp -r *.TTF *.ttf $out/share/fonts/truetype
  '';
}