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