Bunch of Unicode fonts.

svn path=/nixpkgs/trunk/; revision=10909
This commit is contained in:
Michael Raskin
2008-03-02 18:39:33 +00:00
parent 26d4ecd5ad
commit 7ffdd3a997
6 changed files with 143 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "MPH-2B-Damase";
src = fetchurl {
url = http://www.wazu.jp/downloads/damase_v.2.zip;
sha256 = "0y7rakbysjjrzcc5y100hkn64j7js434x20pyi6rllnw2w2n1y1h";
};
buildInputs = [unzip];
unpackPhase = ''
unzip $src;
'';
installPhase = ''
ensureDir $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
'';
}