3
0
Fork 0
forked from mirrors/nixpkgs

add lohit-fonts-20140220

This commit is contained in:
Thomas Tuegel 2014-05-25 14:17:23 -05:00
parent b924959648
commit dfd96f77a7
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "lohit-fonts-20140220";
src = fetchurl {
url = https://fedorahosted.org/releases/l/o/lohit/lohit-ttf-20140220.tar.gz;
sha256 = "1rmgr445hw1n851ywy28csfvswz1i6hnc8mzp88qw2xk9j4dn32d";
};
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
'';
meta = with stdenv.lib; {
homepage = https://fedorahosted.org/lohit/;
description = "Fonts for 21 Indian languages";
license = licenses.ofl;
maintainers = [ maintainers.ttuegel ];
platforms = platforms.all;
};
}

View file

@ -7752,6 +7752,8 @@ let
lmodern = callPackage ../data/fonts/lmodern { };
lohit-fonts = callPackage ../data/fonts/lohit-fonts { };
manpages = callPackage ../data/documentation/man-pages { };
miscfiles = callPackage ../data/misc/miscfiles { };