mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, fontforge }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "linux-libertine";
|
|
version = "5.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/linuxlibertine/5.3.0/LinLibertineSRC_5.3.0_2012_07_02.tgz";
|
|
hash = "sha256-G+xDYKJvHPMzwnktkg9cpNTv9E9d5QFgDjReuKH57HQ=";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [ fontforge ];
|
|
|
|
dontConfigure = true;
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
for i in *.sfd; do
|
|
fontforge -lang=ff -c \
|
|
'Open($1);
|
|
ScaleToEm(1000);
|
|
Reencode("unicode");
|
|
Generate($1:r + ".ttf");
|
|
Generate($1:r + ".otf");
|
|
Reencode("TeX-Base-Encoding");
|
|
Generate($1:r + ".afm");
|
|
Generate($1:r + ".pfm");
|
|
Generate($1:r + ".pfb");
|
|
Generate($1:r + ".map");
|
|
Generate($1:r + ".enc");
|
|
' $i;
|
|
done
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -m444 -Dt $out/share/fonts/opentype/public *.otf
|
|
install -m444 -Dt $out/share/fonts/truetype/public *.ttf
|
|
install -m444 -Dt $out/share/fonts/type1/public *.pfb
|
|
install -m444 -Dt $out/share/texmf/fonts/enc *.enc
|
|
install -m444 -Dt $out/share/texmf/fonts/map *.map
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Linux Libertine Fonts";
|
|
homepage = "http://linuxlibertine.sf.net";
|
|
maintainers = with maintainers; [ erdnaxe ];
|
|
license = licenses.ofl;
|
|
};
|
|
}
|