2008-03-02 19:39:33 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-04-26 17:54:37 +02:00
|
|
|
name = "redhat-liberation";
|
2008-03-02 19:39:33 +01:00
|
|
|
src = fetchurl {
|
2009-05-09 18:26:59 +02:00
|
|
|
url = https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-1.04.tar.gz;
|
|
|
|
sha256 = "189i6pc4jqhhmsb9shi8afg9af9crpmz9bnlldhqaxavr1bhj38f";
|
2008-03-02 19:39:33 +01:00
|
|
|
};
|
2008-07-07 21:02:57 +02:00
|
|
|
|
2008-03-02 19:39:33 +01:00
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/share/fonts/truetype
|
|
|
|
cp *.ttf $out/share/fonts/truetype
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
|