mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
commit
1e10aaebdc
22
pkgs/data/fonts/lohit-fonts/default.nix
Normal file
22
pkgs/data/fonts/lohit-fonts/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -7773,6 +7773,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 { };
|
||||
|
|
Loading…
Reference in a new issue