2008-08-19 07:54:09 +02:00
|
|
|
args : with args; with builderDefs;
|
2008-11-04 22:24:10 +01:00
|
|
|
let localDefs = builderDefs.passthru.function (rec {
|
2008-03-02 22:59:32 +01:00
|
|
|
src = /* put a fetchurl here */
|
|
|
|
fetchurl {
|
|
|
|
url = http://prdownloads.sourceforge.net/junicode/junicode-0.6.15.zip;
|
|
|
|
sha256 = "0p16r5s6qwyz0hayb6k61s5r2sfachlx7r6gpqqx5myx6ipbfdns";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [unzip];
|
|
|
|
configureFlags = [];
|
2009-05-20 01:25:58 +02:00
|
|
|
doInstall = fullDepEntry (''
|
2008-03-02 22:59:32 +01:00
|
|
|
unzip ${src}
|
|
|
|
ensureDir $out/share/fonts/junicode-ttf
|
|
|
|
cp *.ttf $out/share/fonts/junicode-ttf
|
|
|
|
'') ["minInit" "addInputs" "defEnsureDir"];
|
2008-08-19 07:54:09 +02:00
|
|
|
});
|
2008-03-02 22:59:32 +01:00
|
|
|
in with localDefs;
|
|
|
|
stdenv.mkDerivation rec {
|
2009-11-18 10:39:59 +01:00
|
|
|
name = "junicode-0.6.15";
|
2008-03-02 22:59:32 +01:00
|
|
|
builder = writeScript (name + "-builder")
|
|
|
|
(textClosure localDefs
|
|
|
|
[doInstall doForceShare doPropagate]);
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "A Unicode font";
|
2008-03-02 22:59:32 +01:00
|
|
|
inherit src;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|