Unverified Commit 15b5da9a authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

alcarin-tengwar: init at 0.83 (#500240)

parents ad526139 7082a72f
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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";
+28 −0
Original line number Diff line number Diff line
{
  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;
  };
})