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";
|
|
|
|
|
version = "1.0.0-alpha5";
|
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
|
|
|
|
'';
|
2019-05-13 02:55:32 +01:00
|
|
|
|
sha256 = "10jbii6rskcy4akjl5yfcqv4mfwk3nqnx36l6sbxks43va9l04f4";
|
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;
|
|
|
|
|
maintainers = [ maintainers.linarcx ];
|
|
|
|
|
};
|
|
|
|
|
}
|