mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-11 07:23:40 +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
61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fontforge,
|
|
xorg,
|
|
}:
|
|
|
|
let
|
|
version = "1.11";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "tamsyn-font";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "http://www.fial.com/~scott/tamsyn-font/download/tamsyn-font-${version}.tar.gz";
|
|
sha256 = "0kpjzdj8sv5871b8827mjgj9dswk75h94jj5iia2bds18ih1pglp";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
fontforge
|
|
xorg.mkfontscale
|
|
];
|
|
|
|
unpackPhase = ''
|
|
tar -xzf $src --strip-components=1
|
|
'';
|
|
|
|
postBuild = ''
|
|
# convert pcf fonts to otb
|
|
for i in *.pcf; do
|
|
name=$(basename "$i" .pcf)
|
|
fontforge -lang=ff -c "Open(\"$i\"); Generate(\"$name.otb\")"
|
|
done
|
|
|
|
# compress pcf fonts
|
|
gzip -n -9 *.pcf
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -m 644 -D *.otb *.pcf.gz -t "$out/share/fonts/misc"
|
|
install -m 644 -D *.psf.gz -t "$out/share/consolefonts"
|
|
mkfontdir "$out/share/fonts/misc"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Monospace bitmap font aimed at programmers";
|
|
longDescription = ''
|
|
Tamsyn is a monospace bitmap font, primarily aimed at
|
|
programmers. It was derived from Gilles Boccon-Gibod's MonteCarlo. Tamsyn
|
|
font was further inspired by Gohufont, Terminus, Dina, Proggy, Fixedsys, and
|
|
Consolas.
|
|
'';
|
|
homepage = "http://www.fial.com/~scott/tamsyn-font/";
|
|
downloadPage = "http://www.fial.com/~scott/tamsyn-font/download";
|
|
license = licenses.free;
|
|
maintainers = [ maintainers.rps ];
|
|
};
|
|
}
|