nixpkgs/pkgs/data/fonts/redhat-liberation-fonts/default.nix
2008-07-07 19:02:57 +00:00

17 lines
431 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "redhat-liberation";
src = fetchurl {
url = http://www.redhat.com/f/fonts/liberation-fonts.tar.gz;
sha256 = "5749c27f3deb5da323961e86efed1306fc072bea9065790d0047ad61471be6a5";
};
unpackPhase = ''tar -xvf "$src" && sourceRoot="$PWD/liberation-fonts"'';
installPhase = ''
ensureDir $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
'';
}