nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #127276 from DearRude/add/vazir-code

authored by

Sandro and committed by
GitHub
6ccba8dd 2e74d834

+38
+10
maintainers/maintainer-list.nix
··· 2381 2381 githubId = 75067; 2382 2382 name = "Daniel Duan"; 2383 2383 }; 2384 + dearrude = { 2385 + name = "Ebrahim Nejati"; 2386 + email = "dearrude@tfwno.gf"; 2387 + github = "dearrude"; 2388 + githubId = 30749142; 2389 + keys = [{ 2390 + longkeyid = "rsa4096/19151E03BF2CF012"; 2391 + fingerprint = "4E35 F2E5 2132 D654 E815 A672 DB2C BC24 2868 6000"; 2392 + }]; 2393 + }; 2384 2394 deepfire = { 2385 2395 email = "_deepfire@feelingofgreen.ru"; 2386 2396 github = "deepfire";
+26
pkgs/data/fonts/vazir-code-font/default.nix
··· 1 + { lib, fetchFromGitHub }: 2 + 3 + let 4 + pname = "vazir-code-font"; 5 + version = "1.1.2"; 6 + in fetchFromGitHub { 7 + name = "${pname}-${version}"; 8 + 9 + owner = "rastikerdar"; 10 + repo = "vazir-code-font"; 11 + rev = "v${version}"; 12 + 13 + postFetch = '' 14 + tar xf $downloadedFile --strip=1 15 + find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} \; 16 + ''; 17 + sha256 = "0ivwpn9xm2zwhwgg9mghyiy5v66cn4786w9j6rkff5cmzshv279r"; 18 + 19 + meta = with lib; { 20 + homepage = "https://github.com/rastikerdar/vazir-code-font"; 21 + description = "A Persian (farsi) Monospaced Font for coding"; 22 + license = licenses.publicDomain; 23 + platforms = platforms.all; 24 + maintainers = [ maintainers.dearrude ]; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 31395 31395 31396 31396 vaultenv = haskellPackages.vaultenv; 31397 31397 31398 + vazir-code-font = callPackage ../data/fonts/vazir-code-font { }; 31399 + 31398 31400 vazir-fonts = callPackage ../data/fonts/vazir-fonts { }; 31399 31401 31400 31402 vbam = callPackage ../misc/emulators/vbam { };