mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
Merge pull request #57905 from LinArcX/vazir-fonts
vazir-fonts: init at 19.2.0
This commit is contained in:
commit
4cbb9b840b
27
pkgs/data/fonts/vazir-fonts/default.nix
Executable file
27
pkgs/data/fonts/vazir-fonts/default.nix
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "vazir-fonts";
|
||||||
|
version = "19.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rastikerdar";
|
||||||
|
repo = "vazir-font";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0p96y4q20nhpv7hxca6rncfcb14iqy2vacv0xl55wkwqkm4wvzgr";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/fonts/vazir-fonts
|
||||||
|
cp -v $( find . -name '*.ttf') $out/share/fonts/vazir-fonts
|
||||||
|
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/rastikerdar/vazir-font;
|
||||||
|
description = "A Persian (Farsi) Font - قلم (فونت) فارسی وزیر";
|
||||||
|
license = licenses.ofl;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = [ maintainers.linarcx ];
|
||||||
|
};
|
||||||
|
}
|
@ -23130,6 +23130,8 @@ in
|
|||||||
|
|
||||||
vaultenv = haskellPackages.vaultenv;
|
vaultenv = haskellPackages.vaultenv;
|
||||||
|
|
||||||
|
vazir-fonts = callPackage ../data/fonts/vazir-fonts { };
|
||||||
|
|
||||||
vbam = callPackage ../misc/emulators/vbam {
|
vbam = callPackage ../misc/emulators/vbam {
|
||||||
ffmpeg = ffmpeg_2;
|
ffmpeg = ffmpeg_2;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user