2020-04-24 23:36:52 +00:00
|
|
|
|
{ lib, fetchFromGitHub }:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
pname = "sahel-fonts";
|
2022-02-20 05:27:41 +00:00
|
|
|
|
version = "3.4.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
in fetchFromGitHub {
|
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
|
|
owner = "rastikerdar";
|
|
|
|
|
repo = "sahel-font";
|
|
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
|
|
postFetch = ''
|
|
|
|
|
tar xf $downloadedFile --strip=1
|
|
|
|
|
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/sahel-fonts {} \;
|
|
|
|
|
'';
|
2022-02-20 05:27:41 +00:00
|
|
|
|
sha256 = "sha256-MrKSgz9WpVgLS37uH/7S0LPBD/n3GLXeUCMBD7x5CG8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
homepage = "https://github.com/rastikerdar/sahel-font";
|
|
|
|
|
description = "A Persian (farsi) Font - فونت (قلم) فارسی ساحل";
|
|
|
|
|
license = licenses.ofl;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = [ maintainers.linarcx ];
|
|
|
|
|
};
|
|
|
|
|
}
|