steam-fonts: init at 1

This commit is contained in:
Nikolay Amiantov 2015-10-15 15:17:13 +03:00
parent a7177216c6
commit 2286c1894d
2 changed files with 20 additions and 0 deletions

View file

@ -8,6 +8,7 @@ let
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
steam = callPackage ./steam.nix { };
steam-chrootenv = callPackage ./chrootenv.nix { };
steam-fonts = callPackage ./fonts.nix { };
};
in self

View file

@ -0,0 +1,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";
};
buildInputs = [ unzip ];
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp -r *.TTF *.ttf $out/share/fonts/truetype
'';
}