rice/overlay/apl386/default.nix

27 lines
479 B
Nix
Raw Normal View History

2023-03-06 12:24:11 +00:00
{
2023-06-20 09:37:09 +00:00
inputs,
2023-03-06 12:24:11 +00:00
lib,
stdenvNoCC,
}:
stdenvNoCC.mkDerivation {
2023-06-21 08:34:05 +00:00
name = "apl386";
2023-03-06 12:24:11 +00:00
2023-06-20 09:37:09 +00:00
src = inputs.apl386;
2023-03-06 12:24:11 +00:00
installPhase = ''
runHook preInstall
install -Dm644 APL386.ttf -t $out/share/fonts/apl386
runHook postInstall
'';
meta = with lib; {
description = "APL385 Unicode font evolved ";
homepage = "https://github.com/abrudz/APL386";
license = licenses.unlicense;
maintainers = with maintainers; [buffet];
platforms = platforms.all;
};
}