2010-07-29 18:55:16 +00:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
2008-03-02 21:59:32 +00:00
|
|
|
|
2010-07-29 18:55:16 +00:00
|
|
|
stdenv.mkDerivation {
|
2014-11-03 23:59:30 +00:00
|
|
|
name = "junicode-0.7.8";
|
2010-07-29 18:55:16 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-11-03 23:59:30 +00:00
|
|
|
url = mirror://sourceforge/junicode/junicode/junicode-0-7-8/junicode-0-7-8.zip;
|
|
|
|
sha256 = "1lgkhj52s351ya7lp9z3xba7kaivgdvg80njhpj1rpc3jcmc69vl";
|
2010-07-29 18:55:16 +00:00
|
|
|
};
|
2008-03-02 21:59:32 +00:00
|
|
|
|
2010-07-29 18:55:16 +00:00
|
|
|
buildInputs = [ unzip ];
|
2008-03-02 21:59:32 +00:00
|
|
|
|
2010-07-29 18:55:16 +00:00
|
|
|
installPhase =
|
|
|
|
''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/fonts/junicode-ttf
|
2014-11-03 23:59:30 +00:00
|
|
|
cp fonts/*.ttf $out/share/fonts/junicode-ttf
|
2010-07-29 18:55:16 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2014-11-03 23:59:30 +00:00
|
|
|
homepage = http://junicode.sourceforge.net/;
|
2010-07-29 18:55:16 +00:00
|
|
|
description = "A Unicode font";
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-07-29 18:55:16 +00:00
|
|
|
};
|
|
|
|
}
|