Merge pull request #330050 from akssri/indic-fonts

ttf-indic fonts
This commit is contained in:
Thiago Kenji Okada
2024-07-27 15:30:28 +01:00
committed by GitHub
2 changed files with 37 additions and 0 deletions
+6
View File
@@ -822,6 +822,12 @@
githubId = 20405311;
name = "Aksh Gupta";
};
akssri = {
email = "akssri@vakra.xyz";
github = "akssri";
githubId = 108771991;
name = "Akaya Śrīnivāsan";
};
aktaboot = {
email = "akhtaboo@protonmail.com";
github = "aktaboot";
+31
View File
@@ -0,0 +1,31 @@
{
lib,
stdenvNoCC,
fetchurl,
}:
stdenvNoCC.mkDerivation rec {
pname = "ttf-indic";
version = "0.2";
src = fetchurl {
url = "https://www.indlinux.org/downloads/files/indic-otf-${version}.tar.gz";
hash = "sha256-ZFmg1JanAf3eeF7M+yohrXYSUb0zLgNSFldEMzkhXnI=";
};
installPhase = ''
runHook preInstall
install -m444 -Dt $out/share/fonts/truetype OpenType/*.ttf
runHook postInstall
'';
meta = {
homepage = "https://www.indlinux.org/wiki/index.php/Downloads";
description = "Indic Opentype Fonts collection";
license = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.akssri ];
platforms = lib.platforms.all;
};
}