mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
c9eb44eab3
* make font derivations fixed-output where applicable * fix dead links * `stdenv.lib` -> `lib` where `stdenv` is not involved * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
26 lines
692 B
Nix
Executable file
26 lines
692 B
Nix
Executable file
{ lib, fetchFromGitHub }:
|
||
|
||
let
|
||
pname = "vazir-fonts";
|
||
version = "19.2.0";
|
||
in fetchFromGitHub rec {
|
||
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/vazir-fonts {} \;
|
||
'';
|
||
sha256 = "008h095rjrcjhz9h02v6cf3gv64khj21lii4zffgpdlmvfs29f8l";
|
||
|
||
meta = with lib; {
|
||
homepage = https://github.com/rastikerdar/vazir-font;
|
||
description = "A Persian (Farsi) Font - قلم (فونت) فارسی وزیر";
|
||
license = licenses.ofl;
|
||
platforms = platforms.all;
|
||
maintainers = [ maintainers.linarcx ];
|
||
};
|
||
}
|