2022-10-13 23:16:16 +01:00
|
|
|
{ fetchFromGitHub, xorg, lib, stdenv }:
|
2020-05-14 21:18:13 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "tamzen-font";
|
2020-05-24 20:49:52 +01:00
|
|
|
version = "1.11.5";
|
2020-05-14 21:18:13 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sunaku";
|
|
|
|
repo = "tamzen-font";
|
|
|
|
rev = "Tamzen-${version}";
|
2020-05-24 20:49:52 +01:00
|
|
|
sha256 = "00x5fipzqimglvshhqwycdhaqslbvn3rl06jnswhyxfvz16ymj7s";
|
2020-05-14 21:18:13 +01:00
|
|
|
};
|
|
|
|
|
2022-10-13 23:16:16 +01:00
|
|
|
nativeBuildInputs = [ xorg.mkfontscale ];
|
2020-05-14 21:18:13 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2020-08-21 13:18:18 +01:00
|
|
|
install -m 644 -D otb/*.otb pcf/*.pcf -t "$out/share/fonts/misc"
|
2020-05-14 21:18:13 +01:00
|
|
|
install -m 644 -D psf/*.psf -t "$out/share/consolefonts"
|
|
|
|
mkfontdir "$out/share/fonts/misc"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-05-14 21:18:13 +01:00
|
|
|
description = "Bitmapped programming font based on Tamsyn";
|
|
|
|
longDescription = ''
|
2022-12-18 00:39:44 +00:00
|
|
|
Tamzen is a monospace bitmap font. It is programmatically forked
|
2020-05-14 21:18:13 +01:00
|
|
|
from Tamsyn version 1.11, which backports glyphs from older
|
|
|
|
versions while deleting deliberately empty glyphs to allow
|
|
|
|
secondary/fallback fonts to provide real glyphs at those codepoints.
|
|
|
|
Tamzen also has fonts that additionally provide the Powerline
|
|
|
|
symbols.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/sunaku/tamzen-font";
|
|
|
|
license = licenses.free;
|
|
|
|
maintainers = with maintainers; [ wishfort36 ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|