mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 00:04:11 +00:00
27 lines
666 B
Nix
Executable File
27 lines
666 B
Nix
Executable File
{ lib, fetchFromGitHub }:
|
||
|
||
let
|
||
pname = "vazir-fonts";
|
||
version = "30.1.0";
|
||
in fetchFromGitHub {
|
||
name = "${pname}-${version}";
|
||
|
||
owner = "rastikerdar";
|
||
repo = "vazir-font";
|
||
rev = "v${version}";
|
||
|
||
postFetch = ''
|
||
tar xf $downloadedFile --strip=1
|
||
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} \;
|
||
'';
|
||
sha256 = "sha256-J1l6rBFgaXFtGnK0pH7GbaYTt5TI/OevjZrXmaEgkB4=";
|
||
|
||
meta = with lib; {
|
||
homepage = "https://github.com/rastikerdar/vazir-font";
|
||
description = "A Persian (Farsi) Font - قلم (فونت) فارسی وزیر";
|
||
license = licenses.ofl;
|
||
platforms = platforms.all;
|
||
maintainers = [ ];
|
||
};
|
||
}
|