nixpkgs/pkgs/data/fonts/vazir-fonts/default.nix

27 lines
688 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
2019-03-19 13:25:40 +00:00
let
pname = "vazir-fonts";
2019-03-19 13:25:40 +00:00
version = "19.2.0";
2019-08-13 21:52:01 +00:00
in fetchFromGitHub {
name = "${pname}-${version}";
2019-03-19 13:25:40 +00:00
owner = "rastikerdar";
repo = "vazir-font";
rev = "v${version}";
2019-03-19 13:25:40 +00:00
postFetch = ''
tar xf $downloadedFile --strip=1
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/vazir-fonts {} \;
2019-03-19 13:25:40 +00:00
'';
sha256 = "008h095rjrcjhz9h02v6cf3gv64khj21lii4zffgpdlmvfs29f8l";
2019-03-19 13:25:40 +00:00
meta = with lib; {
2019-03-19 13:25:40 +00:00
homepage = https://github.com/rastikerdar/vazir-font;
description = "A Persian (Farsi) Font - قلم (فونت) فارسی وزیر";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.linarcx ];
};
}