36 lines
928 B
Nix
36 lines
928 B
Nix
{ lib, stdenvNoCC, fetchurl, xorg }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "spleen";
|
|
version = "2.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/fcambus/spleen/releases/download/${version}/spleen-${version}.tar.gz";
|
|
hash = "sha256-+TDrAolKoG61CuqqELAEICVNcjIPoow6QPFXqMKUN1U=";
|
|
};
|
|
|
|
nativeBuildInputs = [ xorg.mkfontscale ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
d="$out/share/fonts/misc"
|
|
install -D -m 644 *.{pcf,bdf,otf} -t "$d"
|
|
install -D -m 644 *.psfu -t "$out/share/consolefonts"
|
|
install -m644 fonts.alias-spleen $d/fonts.alias
|
|
|
|
# create fonts.dir so NixOS xorg module adds to fp
|
|
mkfontdir "$d"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Monospaced bitmap fonts";
|
|
homepage = "https://www.cambus.net/spleen-monospaced-bitmap-fonts";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
};
|
|
}
|