apl2741-unicode: init at 0-unstable-2022-11-10 (#435714)

This commit is contained in:
Yohann Boniface
2025-12-30 20:54:25 +00:00
committed by GitHub
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "apl2741-unicode";
version = "0-unstable-2022-11-10";
src = fetchFromGitHub {
owner = "abrudz";
repo = "APL2741";
rev = "1e11efae38e5095bfe49a786b111d563e83dad03";
hash = "sha256-/sAO+HL3zGMJZ+5SFHnkHxxevG0nJ7wo1yLTlHqYPkQ=";
};
dontConfigure = true;
dontBuild = true;
installPhase = ''
runHook preInstall
install -Dm644 -t $out/share/fonts/truetype *.ttf
runHook postInstall
'';
meta = {
description = "APL font based on Adrian Smith's IBM Selectric APL2741 golf-ball font";
license = lib.licenses.unlicense;
homepage = "https://abrudz.github.io/APL2741/";
maintainers = [ lib.maintainers.sternenseemann ];
platforms = lib.platforms.all;
};
}
+1
View File
@@ -46,6 +46,7 @@ stdenvNoCC.mkDerivation rec {
epl10
bsd3
];
maintainers = with lib.maintainers; [ sternenseemann ];
platforms = lib.platforms.all;
};
}