4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
62 lines
1.6 KiB
Nix
62 lines
1.6 KiB
Nix
{ lib, stdenv, fetchurl, bdftopcf
|
|
, libfaketime, fonttosfnt, mkfontscale
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ucs-fonts";
|
|
version = "20090406";
|
|
|
|
srcs = [
|
|
(fetchurl {
|
|
url = "http://www.cl.cam.ac.uk/~mgk25/download/ucs-fonts.tar.gz";
|
|
sha256 = "12hgizg25fzmk10wjl0c88x97h3pg5r9ga122s3y28wixz6x2bvh";
|
|
})
|
|
(fetchurl {
|
|
url = "http://www.cl.cam.ac.uk/~mgk25/download/ucs-fonts-asian.tar.gz";
|
|
sha256 = "0ibjy4xpz5j373hsdr8bx99czfpclqmviwwv768j8n7z12z3wa51";
|
|
})
|
|
(fetchurl {
|
|
url = "http://www.cl.cam.ac.uk/~mgk25/download/ucs-fonts-75dpi100dpi.tar.gz";
|
|
sha256 = "08vqr8yb636xa1s28vf3pm22dzkia0gisvsi2svqjqh4kk290pzh";
|
|
})
|
|
];
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs =
|
|
[ bdftopcf libfaketime fonttosfnt
|
|
mkfontscale
|
|
];
|
|
|
|
buildPhase = ''
|
|
for i in *.bdf; do
|
|
name=$(basename "$i" .bdf)
|
|
|
|
# generate pcf fonts (for X11 applications)
|
|
bdftopcf -t "$i" | gzip -n -9 -c > "$name.pcf.gz"
|
|
|
|
# generate otb fonts (for GTK applications)
|
|
faketime -f "1970-01-01 00:00:01" \
|
|
fonttosfnt -v -o "$name.otb" "$i"
|
|
done
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -m 644 -D *.otb *.pcf.gz -t "$out/share/fonts/misc"
|
|
install -m 644 -D *.bdf -t "$bdf/share/fonts/misc"
|
|
|
|
mkfontdir "$out/share/fonts/misc"
|
|
mkfontdir "$bdf/share/fonts/misc"
|
|
'';
|
|
|
|
outputs = [ "out" "bdf" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html";
|
|
description = "Unicode bitmap fonts";
|
|
license = licenses.publicDomain;
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|