smc-fonts-flake/chilanka/default.nix

28 lines
675 B
Nix
Raw Normal View History

2024-07-26 23:03:45 +00:00
{ pkgs, ...}:
pkgs.stdenv.mkDerivation {
2024-07-26 23:58:36 +00:00
version = "1.7";
pname = "chilanka";
2024-07-26 23:03:45 +00:00
src = pkgs.fetchzip {
2024-07-26 23:58:36 +00:00
url = "https://smc.org.in/downloads/fonts/chilanka/chilanka.zip";
hash = "sha256-u3hUW6EFhr9FIUl28u7TUKEclxWcpK95OUmL+SCwkD0=s";
2024-07-26 23:03:45 +00:00
stripRoot = false;
};
installPhase = ''
runHook preInstall
install -Dm444 -t $out/share/fonts/truetype $src/*.ttf
runHook postInstall
'';
meta = with pkgs.lib; {
2024-07-26 23:58:36 +00:00
homepage = "https://smc.org.in/fonts/chilanka";
description = "Chilanka Malayalam Typeface";
2024-07-26 23:03:45 +00:00
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ aashiks ];
};
}