blob: 52c980660c89a3b2df4b07afb6cbbe7e6d6508f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
};
}
|