2008-07-05 07:26:58 +02:00
|
|
|
args : with args;
|
2009-05-24 12:57:41 +02:00
|
|
|
let version = lib.attrByPath ["version"] "2.04" args; in
|
2008-07-05 07:26:58 +02:00
|
|
|
rec {
|
|
|
|
src = fetchurl {
|
2010-02-21 08:20:26 +01:00
|
|
|
urls = [
|
|
|
|
"ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/ttf-arkpandora-${version}.tgz"
|
|
|
|
"http://www.users.bigpond.net.au/gavindi/ttf-arkpandora-${version}.tgz"
|
|
|
|
];
|
2008-07-05 07:26:58 +02:00
|
|
|
sha256 = "16mfxwlgn6vs3xn00hha5dnmz6bhjiflq138y4zcq3yhk0y9bz51";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [];
|
|
|
|
configureFlags = [];
|
|
|
|
|
|
|
|
/* doConfigure should be specified separately */
|
|
|
|
phaseNames = ["doUnpack" "installFonts"];
|
|
|
|
|
|
|
|
name = "arkpandora-" + version;
|
|
|
|
meta = {
|
|
|
|
description = "ArkPandora fonts, metrically identical to Arial and Times New Roman.";
|
|
|
|
};
|
|
|
|
}
|