2019-05-12 18:55:32 -07:00
|
|
|
|
{ lib, fetchFromGitHub }:
|
2019-03-28 09:59:46 -07:00
|
|
|
|
|
2019-05-12 18:55:32 -07:00
|
|
|
|
let
|
2019-03-28 09:59:46 -07:00
|
|
|
|
pname = "gandom-fonts";
|
|
|
|
|
version = "0.6";
|
2019-05-12 18:55:32 -07:00
|
|
|
|
in fetchFromGitHub {
|
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
owner = "rastikerdar";
|
|
|
|
|
repo = "gandom-font";
|
|
|
|
|
rev = "v${version}";
|
2019-03-28 09:59:46 -07:00
|
|
|
|
|
2019-05-12 18:55:32 -07:00
|
|
|
|
postFetch = ''
|
|
|
|
|
tar xf $downloadedFile --strip=1
|
|
|
|
|
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/gandom-fonts {} \;
|
2019-03-28 09:59:46 -07:00
|
|
|
|
'';
|
2019-05-12 18:55:32 -07:00
|
|
|
|
sha256 = "0zsq6s9ziyb5jz0v8aj00dlxd1aly0ibxgszd05dfvykmgz051lc";
|
2019-03-28 09:59:46 -07:00
|
|
|
|
|
2019-05-12 18:55:32 -07:00
|
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
|
homepage = "https://github.com/rastikerdar/gandom-font";
|
2019-03-28 09:59:46 -07:00
|
|
|
|
description = "A Persian (Farsi) Font - فونت (قلم) فارسی گندم";
|
|
|
|
|
license = licenses.ofl;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = [ maintainers.linarcx ];
|
|
|
|
|
};
|
|
|
|
|
}
|