mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
78 lines
1.7 KiB
Nix
78 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
xorg,
|
|
bdf2psf,
|
|
bdftopcf,
|
|
libfaketime,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gohufont";
|
|
version = "2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hchargois";
|
|
repo = "gohufont";
|
|
rev = "cc36b8c9fed7141763e55dcee0a97abffcf08224";
|
|
sha256 = "1hmp11mrr01b29phw0xyj4h9b92qz19cf56ssf6c47c5j2c4xmbv";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
xorg.mkfontscale
|
|
bdf2psf
|
|
bdftopcf
|
|
xorg.fonttosfnt
|
|
libfaketime
|
|
];
|
|
|
|
buildPhase = ''
|
|
# convert bdf fonts to psf
|
|
build=$(pwd)
|
|
mkdir psf
|
|
cd ${bdf2psf}/share/bdf2psf
|
|
for i in $src/*.bdf; do
|
|
name=$(basename $i .bdf)
|
|
bdf2psf \
|
|
--fb "$i" standard.equivalents \
|
|
ascii.set+useful.set+linux.set 512 \
|
|
"$build/psf/$name.psf"
|
|
done
|
|
cd $build
|
|
|
|
# convert bdf fonts to pcf
|
|
for i in *.bdf $src/hidpi/*.bdf; do
|
|
name=$(basename $i .bdf)
|
|
bdftopcf -o "$name.pcf" "$i"
|
|
done
|
|
|
|
# convert unicode bdf fonts to otb
|
|
for i in *-uni*.bdf $src/hidpi/*-uni*.bdf; do
|
|
name=$(basename $i .bdf)
|
|
faketime -f "1970-01-01 00:00:01" \
|
|
fonttosfnt -v -o "$name.otb" "$i"
|
|
done
|
|
'';
|
|
|
|
installPhase = ''
|
|
# install the psf fonts (for the virtual console)
|
|
fontDir="$out/share/consolefonts"
|
|
install -D -m 644 -t "$fontDir" psf/*.psf
|
|
|
|
# install the pcf and otb fonts (for X11,GTK applications)
|
|
fontDir="$out/share/fonts/misc"
|
|
install -D -m 644 -t "$fontDir" *.pcf *.otb
|
|
mkfontdir "$fontDir"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = ''
|
|
A monospace bitmap font well suited for programming and terminal use
|
|
'';
|
|
homepage = "https://font.gohu.org/";
|
|
license = licenses.wtfpl;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
};
|
|
}
|