smc-fonts-flake/chilanka/default.nix

29 lines
653 B
Nix
Raw Permalink Normal View History

2024-10-12 15:53:10 +00:00
{ pkgs, ... }:
2024-07-26 23:03:45 +00:00
pkgs.stdenv.mkDerivation {
2024-07-26 23:58:36 +00:00
version = "1.7";
pname = "chilanka";
2024-10-12 15:53:10 +00:00
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";
2024-10-12 15:53:10 +00:00
hash = "sha256-z+pRvm/8alA3TbUBuR4oDD/kpvuXJTqOBlzXEKBZvnE=";
2024-07-26 23:03:45 +00:00
stripRoot = false;
};
installPhase = ''
runHook preInstall
install -D -m444 -t $out/share/fonts/truetype $src/*.ttf
runHook postInstall
2024-10-12 15:53:10 +00:00
'';
2024-07-26 23:03:45 +00:00
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 ];
};
}