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
51 lines
1.4 KiB
Nix
51 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, fontforge, mkfontscale }:
|
|
|
|
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 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 = "A 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 ];
|
|
};
|
|
}
|
|
|