nixpkgs/pkgs/data/fonts/sahel-fonts/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
705 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "sahel-fonts";
2022-02-13 19:53:47 +00:00
version = "3.4.0";
src = fetchFromGitHub {
owner = "rastikerdar";
repo = "sahel-font";
rev = "v${version}";
hash = "sha256-U4tIICXZFK9pk7zdzRwBPIPYFUlYXPSebnItUJUgGJY=";
};
installPhase = ''
runHook preInstall
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/sahel-fonts {} \;
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/rastikerdar/sahel-font";
description = "A Persian (farsi) Font - فونت (قلم) فارسی ساحل";
license = licenses.ofl;
platforms = platforms.all;
2022-02-20 04:20:00 +00:00
maintainers = [ ];
};
}