alcarin-tengwar: init at 0.83 (#500240)

This commit is contained in:
Yohann Boniface
2026-03-16 02:58:28 +00:00
committed by GitHub
2 changed files with 35 additions and 0 deletions
+7
View File
@@ -10078,6 +10078,13 @@
githubId = 11212268;
name = "gruve-p";
};
gs-101 = {
email = "gabrielsantosdesouza@disroot.org";
github = "gs-101";
githubId = 172639817;
keys = [ { fingerprint = "D1D3 37F6 CB32 02DC B9BA 337B F9D8 EABC F57E ED58"; } ];
name = "Gabriel Santos";
};
gschwartz = {
email = "gsch@pennmedicine.upenn.edu";
github = "GregorySchwartz";
@@ -0,0 +1,28 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
installFonts,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "alcarin-tengwar";
version = "0.83";
src = fetchFromGitHub {
owner = "Tosche";
repo = "Alcarin-Tengwar";
rev = "a4530d430ea01871b0b0a54d1de218d2ffde0ea5";
hash = "sha256-W1PJ2ABjtGUhWp6XBUq6Zox7uG81tMEs13GidfwgD6Q=";
};
nativeBuildInputs = [ installFonts ];
meta = {
description = "Typeface designed to provide Tengwar symbols";
homepage = "https://github.com/Tosche/Alcarin-Tengwar";
license = lib.licenses.ofl;
maintainers = with lib.maintainers; [ gs-101 ];
platforms = lib.platforms.all;
};
})