2019-05-13 02:55:32 +01:00
|
|
|
|
{ lib, fetchFromGitHub }:
|
2019-03-31 18:33:16 +01:00
|
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
|
let
|
2019-03-31 18:33:16 +01:00
|
|
|
|
pname = "sahel-fonts";
|
|
|
|
|
version = "1.0.0-alpha22";
|
2019-08-13 22:52:01 +01:00
|
|
|
|
in fetchFromGitHub {
|
2019-05-13 02:55:32 +01:00
|
|
|
|
name = "${pname}-${version}";
|
2019-03-31 18:33:16 +01:00
|
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
|
owner = "rastikerdar";
|
|
|
|
|
repo = "sahel-font";
|
|
|
|
|
rev = "v${version}";
|
2019-03-31 18:33:16 +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/sahel-fonts {} \;
|
2019-03-31 18:33:16 +01:00
|
|
|
|
'';
|
2019-05-13 02:55:32 +01:00
|
|
|
|
sha256 = "0vj8ydv50rjanb0favd7rh4r9rv5fl39vqwvzkpgfdcdawn0xjm7";
|
2019-03-31 18:33:16 +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/sahel-font";
|
2019-03-31 18:33:16 +01:00
|
|
|
|
description = "A Persian (farsi) Font - فونت (قلم) فارسی ساحل";
|
|
|
|
|
license = licenses.ofl;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = [ maintainers.linarcx ];
|
|
|
|
|
};
|
|
|
|
|
}
|