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

27 lines
687 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
2019-03-19 13:25:40 +00:00
let
pname = "vazir-fonts";
2020-02-23 09:20:00 +00:00
version = "22.1.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
2020-02-23 09:20:00 +00:00
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} \;
2019-03-19 13:25:40 +00:00
'';
2020-02-23 09:20:00 +00:00
sha256 = "1nh3pyyw3082aizdwgyihh4z122z7kzp45ry7lzdhq9lshkpzglc";
2019-03-19 13:25:40 +00:00
meta = with lib; {
2020-02-23 09:20:00 +00:00
homepage = "https://github.com/rastikerdar/vazir-font";
2019-03-19 13:25:40 +00:00
description = "A Persian (Farsi) Font - قلم (فونت) فارسی وزیر";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.linarcx ];
};
}