chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / tt / ttf-indic / package.nix
blob52c980660c89a3b2df4b07afb6cbbe7e6d6508f6
2   lib,
3   stdenvNoCC,
4   fetchurl,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "ttf-indic";
9   version = "0.2";
11   src = fetchurl {
12     url = "https://www.indlinux.org/downloads/files/indic-otf-${version}.tar.gz";
13     hash = "sha256-ZFmg1JanAf3eeF7M+yohrXYSUb0zLgNSFldEMzkhXnI=";
14   };
16   installPhase = ''
17     runHook preInstall
19     install -m444 -Dt $out/share/fonts/truetype OpenType/*.ttf
21     runHook postInstall
22   '';
24   meta = {
25     homepage = "https://www.indlinux.org/wiki/index.php/Downloads";
26     description = "Indic Opentype Fonts collection";
27     license = lib.licenses.gpl2Only;
28     maintainers = [ lib.maintainers.akssri ];
29     platforms = lib.platforms.all;
30   };