dina font: rename to dina-pcf, add vanilla version

This commit is contained in:
Bart Brouns
2015-11-29 22:17:14 +01:00
parent 56d3457c2f
commit 73ab10af6f
3 changed files with 70 additions and 34 deletions
+7 -34
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, unzip, bdftopcf, mkfontdir, mkfontscale}:
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
version = "2.92";
@@ -9,42 +9,15 @@ stdenv.mkDerivation rec {
sha256 = "1kq86lbxxgik82aywwhawmj80vsbz3hfhdyhicnlv9km7yjvnl8z";
};
buildInputs = [ unzip bdftopcf mkfontdir mkfontscale ];
nativeBuildInputs = [ unzip ];
phases = [ "unpackPhase" "installPhase" ];
dontBuild = true;
patchPhase = "sed -i 's/microsoft-cp1252/ISO8859-1/' *.bdf";
installPhase = ''
_get_font_size() {
_pt=$\{1%.bdf}
_pt=$\{_pt#*-}
echo $_pt
}
for i in Dina_i400-*.bdf; do
bdftopcf -t -o DinaItalic$(_get_font_size $i).pcf $i
done
for i in Dina_i700-*.bdf; do
bdftopcf -t -o DinaBoldItalic$(_get_font_size $i).pcf $i
done
for i in Dina_r400-*.bdf; do
bdftopcf -t -o DinaMedium$(_get_font_size $i).pcf $i
done
for i in Dina_r700-*.bdf; do
bdftopcf -t -o DinaBold$(_get_font_size $i).pcf $i
done
gzip *.pcf
fontDir="$out/share/fonts/misc"
mkdir -p "$fontDir"
mv *.pcf.gz "$fontDir"
cd "$fontDir"
mkfontdir
mkfontscale
installPhase =
''
mkdir -p $out/share/fonts
cp *.bdf $out/share/fonts
'';
preferLocalBuild = true;
meta = with stdenv.lib; {
description = "A monospace bitmap font aimed at programmers";
longDescription = ''