depot/third_party/nixpkgs/pkgs/by-name/tt/ttf-indic/package.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

31 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;
};
}