unifont: update from 5.1-20080907 to 7.0.06 (close #5748)

Also expand meta set and add myself as maintainer.
This commit is contained in:
Robert Helgesson 2015-01-11 15:07:51 +01:00 committed by Vladimír Čunát
parent 07e1566b7d
commit a9b2e757e2

View File

@ -1,37 +1,40 @@
{ stdenv, fetchurl, mkfontscale, mkfontdir, bdftopcf, fontutil }: { stdenv, fetchurl, mkfontscale, mkfontdir }:
let stdenv.mkDerivation rec {
name = "unifont-${version}";
version = "7.0.06";
ttf = fetchurl { ttf = fetchurl {
url = http://unifoundry.com/unifont-5.1.20080907.ttf.gz; url = "http://unifoundry.com/pub/${name}/font-builds/${name}.ttf";
sha256 = "03ssxsfhnayarzx15mn6khry2kgdxhkkc1bqzgr0c85ab5xm9jxw"; sha256 = "0qmk06rwhxs43n1xbwj14fanbih60zqli002qhy0609da24r3957";
}; };
pcf = fetchurl { pcf = fetchurl {
url = http://unifoundry.com/unifont-5.1.20080820.pcf.gz; url = "http://unifoundry.com/pub/${name}/font-builds/${name}.pcf.gz";
sha256 = "0qwsgaplb2a79w14rrvazby3kwx7vyk08x70n0ih5dr91x3rqaqj"; sha256 = "1wplig57wpc79mlqamhknn39cibg5z8dvbyibp1490ljcjs1dxdc";
}; };
in buildInputs = [ mkfontscale mkfontdir ];
stdenv.mkDerivation { phases = "installPhase";
name = "unifont-5.1-20080907";
buildInputs = [ mkfontscale mkfontdir bdftopcf fontutil ];
unpackPhase = "true";
installPhase = installPhase =
'' ''
mkdir -p $out/share/fonts $out/share/fonts/truetype mkdir -p $out/share/fonts $out/share/fonts/truetype
cp ${pcf} $out/share/fonts/unifont.pcf.gz cp -v ${pcf} $out/share/fonts/unifont.pcf.gz
gunzip < ${ttf} > $out/share/fonts/truetype/unifont.ttf cp -v ${ttf} $out/share/fonts/truetype/unifont.ttf
cd $out/share/fonts cd $out/share/fonts
mkfontdir mkfontdir
mkfontscale mkfontscale
''; '';
meta = { meta = with stdenv.lib; {
description = "Unicode font for Base Multilingual Plane"; description = "Unicode font for Base Multilingual Plane";
homepage = http://unifoundry.com/unifont.html;
# Basically GPL2+ with font exception.
license = http://unifoundry.com/LICENSE.txt;
maintainers = [ maintainers.rycee ];
platforms = platforms.all;
}; };
} }