Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
681 B
Nix
32 lines
681 B
Nix
{
|
|
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;
|
|
};
|
|
}
|