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