2019-05-13 02:55:32 +01:00
|
|
|
|
{ lib, fetchFromGitHub }:
|
2019-03-31 19:00:06 +01:00
|
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
|
let
|
2019-03-31 19:00:06 +01:00
|
|
|
|
pname = "parastoo-fonts";
|
2022-02-14 17:59:31 +00:00
|
|
|
|
version = "2.0.1";
|
2019-08-13 22:52:01 +01:00
|
|
|
|
in fetchFromGitHub {
|
2019-05-13 02:55:32 +01:00
|
|
|
|
name = "${pname}-${version}";
|
2019-03-31 19:00:06 +01:00
|
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
|
owner = "rastikerdar";
|
|
|
|
|
repo = "parastoo-font";
|
|
|
|
|
rev = "v${version}";
|
2019-03-31 19:00:06 +01:00
|
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
|
postFetch = ''
|
|
|
|
|
tar xf $downloadedFile --strip=1
|
|
|
|
|
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/parastoo-fonts {} \;
|
2019-03-31 19:00:06 +01:00
|
|
|
|
'';
|
2022-02-14 17:59:31 +00:00
|
|
|
|
sha256 = "sha256-4smobLS43DB7ISmbWDWX0IrtaeiyXpi1QpAiL8NyXoQ=";
|
2019-03-31 19:00:06 +01:00
|
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://github.com/rastikerdar/parastoo-font";
|
2019-03-31 19:00:06 +01:00
|
|
|
|
description = "A Persian (Farsi) Font - فونت ( قلم ) فارسی پرستو";
|
|
|
|
|
license = licenses.ofl;
|
|
|
|
|
platforms = platforms.all;
|
2022-02-20 04:20:00 +00:00
|
|
|
|
maintainers = [ ];
|
2019-03-31 19:00:06 +01:00
|
|
|
|
};
|
|
|
|
|
}
|