Added Linux Libertine font

svn path=/nixpkgs/trunk/; revision=11738
This commit is contained in:
Michael Raskin 2008-04-28 10:08:40 +00:00
parent 87a1c3d55e
commit c9c55bd3fd
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,17 @@
args: with args;
rec{
src = fetchurl {
url = http://downloads.sourceforge.net/linuxlibertine/LinLibertineFont-2.7.tgz;
sha256 = "06xm3np2xx41fr2yc00q0z2qy9s6p860f18ns1f1f00vi54dm4c5";
};
buildInputs = [];
phaseNames = ["doUnpack" "installFonts"];
name = "linux-libertine-" + version;
meta = {
description = "Linux Libertine Fonts";
homepage = http://linuxlibertine.sf.net;
};
}

View File

@ -0,0 +1,21 @@
args : with args;
rec {
src = fetchurl {
url = http://downloads.sourceforge.net/linuxlibertine/LinLibertineSRC-2.7.tgz;
sha256 = "1czc3pil4zrii6qh6zk0g6hj6axj20gfnpbbdfrzm703wm9w70ic";
};
buildInputs = [fontforge];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["doUnpack" "generateFontsFromSFD" "installFonts"];
createTTF=false;
name = "linux-libertine-" + version;
meta = {
description = "Linux Libertine Fonts";
homepage = http://linuxlibertine.sf.net;
};
}