This commit is contained in:
41666 2025-05-22 15:34:17 -07:00
parent 77b02b6d8d
commit e2604dddd0
8 changed files with 48 additions and 12 deletions

View file

@ -0,0 +1,19 @@
{ pkgs, ... }: pkgs.stdenvNoCC.mkDerivation (finalAttrs: {
pname = "kelmscott-mono";
version = "1.0";
src = pkgs.fetchFromGitHub {
owner = "seeddisperser";
repo = "kelmscott-mono";
rev = "54fa2edd797ba381678c420a1cbc6e38d2c1c5d5";
hash = "sha256-xyydL/T6z9DnmIb9paSnVK/JjVTpxSM45V9jj2GSU78=";
};
installPhase = ''
runHook preInstall
install -Dm644 *.otf -t $out/share/fonts/opentype
runHook postInstall
'';
})