smc-fonts-flake/manjari/default.nix

29 lines
650 B
Nix
Raw Permalink Normal View History

2024-10-12 15:53:10 +00:00
{ pkgs, ... }:
2024-07-26 22:38:07 +00:00
pkgs.stdenv.mkDerivation {
version = "2.200";
pname = "manjari";
2024-10-12 15:53:10 +00:00
2024-07-26 22:38:07 +00:00
src = pkgs.fetchzip {
url = "https://smc.org.in/downloads/fonts/manjari/manjari.zip";
2024-10-12 15:53:10 +00:00
hash = "sha256-Sq/7UOBO54c3id6FMZeOmnZTRceEkMAAN8W+C7v7Mtw=";
2024-07-26 22:38:07 +00:00
stripRoot = false;
};
installPhase = ''
runHook preInstall
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
runHook postInstall
2024-10-12 15:53:10 +00:00
'';
2024-07-26 22:38:07 +00:00
meta = with pkgs.lib; {
homepage = "https://smc.org.in/fonts/manjari";
description = "Manjari Malayalam Typeface";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ aashiks ];
};
}