nix/pkgs/ms-w98-ui-font.nix
2025-08-12 15:47:26 +10:00

21 lines
472 B
Nix

{
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "ms-w98-ui-font";
version = "1.0";
src = fetchFromGitHub {
owner = "MARTYR-X-LTD";
repo = "ms-w98-ui";
rev = "1333c17aa54f547025679ea05a37eee5a2a26429";
hash = "sha256-yEbq8Hef4odL3pjGHxjDVE9lRCeiw7eekvUL5SbJ1Zw=";
};
installPhase = ''
runHook preInstall
install -m644 --target $out/share/fonts/truetype/ -D $src/TTF/*.ttf
runHook postInstall
'';
}