Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 127c1b19b382
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4cbb9b840b05
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 19, 2019

  1. vazir-fonts: init at 19.2.0

    LinArcX committed Mar 19, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    5b98f0d View commit details

Commits on Mar 26, 2019

  1. Merge pull request #57905 from LinArcX/vazir-fonts

    vazir-fonts: init at 19.2.0
    matthewbauer authored Mar 26, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    4cbb9b8 View commit details
Showing with 29 additions and 0 deletions.
  1. +27 −0 pkgs/data/fonts/vazir-fonts/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
27 changes: 27 additions & 0 deletions pkgs/data/fonts/vazir-fonts/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -23130,6 +23130,8 @@ in

vaultenv = haskellPackages.vaultenv;

vazir-fonts = callPackage ../data/fonts/vazir-fonts { };

vbam = callPackage ../misc/emulators/vbam {
ffmpeg = ffmpeg_2;
};