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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "unifont";
|
2019-08-12 11:07:40 +01:00
|
|
|
version = "12.1.03";
|
2010-07-28 16:35:01 +01:00
|
|
|
|
|
|
|
ttf = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.ttf";
|
2019-08-12 11:07:40 +01:00
|
|
|
sha256 = "10igjlf05d97h3vcggr2ahxmq9ljby4ypja2g4s9bvxs2w1si51p";
|
2008-03-02 18:39:33 +00:00
|
|
|
};
|
2010-07-28 16:35:01 +01:00
|
|
|
|
|
|
|
pcf = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.pcf.gz";
|
2019-08-12 11:07:40 +01:00
|
|
|
sha256 = "1cd1fnk3m7giqp099kynnjj4m7q00lqm4ybqb1vzd2wi3j4a1awf";
|
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";
|
2019-08-12 11:07:40 +01:00
|
|
|
outputHash = "0n3ms2k2mk7j6144l05c45smggwf3j5cwkaxhw93wf9hd1lhpwq1";
|
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
|
|
|
}
|