2015-01-11 14:07:51 +00:00
|
|
|
{ stdenv, fetchurl, mkfontscale, mkfontdir }:
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2015-01-11 14:07:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "unifont-${version}";
|
2018-08-12 20:39:41 +01:00
|
|
|
version = "11.0.02";
|
2010-07-28 16:35:01 +01:00
|
|
|
|
|
|
|
ttf = fetchurl {
|
2016-11-05 06:55:04 +00:00
|
|
|
url = "mirror://gnu/unifont/${name}/${name}.ttf";
|
2018-08-12 20:39:41 +01:00
|
|
|
sha256 = "0l8p07m566131xdinv1pcfc578jpvn72n6dhqmgivp8myai2xkzx";
|
2008-03-02 18:39:33 +00:00
|
|
|
};
|
2010-07-28 16:35:01 +01:00
|
|
|
|
|
|
|
pcf = fetchurl {
|
2016-11-05 06:55:04 +00:00
|
|
|
url = "mirror://gnu/unifont/${name}/${name}.pcf.gz";
|
2018-08-12 20:39:41 +01:00
|
|
|
sha256 = "1hcl71fjchngcb2b4mwl4hhx886faaniv86x2xgk8850766qpnmy";
|
2008-03-02 18:39:33 +00:00
|
|
|
};
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2018-01-10 00:27:23 +00:00
|
|
|
nativeBuildInputs = [ mkfontscale mkfontdir ];
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2015-01-11 14:07:51 +00:00
|
|
|
phases = "installPhase";
|
2010-07-28 16:35:01 +01:00
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/fonts $out/share/fonts/truetype
|
2015-01-11 14:07:51 +00:00
|
|
|
cp -v ${pcf} $out/share/fonts/unifont.pcf.gz
|
|
|
|
cp -v ${ttf} $out/share/fonts/truetype/unifont.ttf
|
2010-07-28 16:35:01 +01:00
|
|
|
cd $out/share/fonts
|
2015-01-11 14:07:51 +00:00
|
|
|
mkfontdir
|
2010-07-28 16:35:01 +01:00
|
|
|
mkfontscale
|
|
|
|
'';
|
2015-01-11 14:07:51 +00:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
outputHashMode = "recursive";
|
2018-08-12 20:39:41 +01:00
|
|
|
outputHash = "16ni07cfw38s7cj8bdsfi7fa1qahm3k90cmm4gn40qvz35i17x15";
|
2017-08-10 20:43:49 +01:00
|
|
|
|
2015-01-11 14:07:51 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Unicode font for Base Multilingual Plane";
|
2015-01-11 14:07:51 +00:00
|
|
|
homepage = http://unifoundry.com/unifont.html;
|
|
|
|
|
|
|
|
# Basically GPL2+ with font exception.
|
|
|
|
license = http://unifoundry.com/LICENSE.txt;
|
2016-07-04 18:32:08 +01:00
|
|
|
maintainers = [ maintainers.rycee maintainers.vrthra ];
|
2015-01-11 14:07:51 +00:00
|
|
|
platforms = platforms.all;
|
2008-03-02 18:39:33 +00:00
|
|
|
};
|
2010-07-28 16:35:01 +01:00
|
|
|
}
|