mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
30 lines
705 B
Nix
30 lines
705 B
Nix
{ lib, stdenvNoCC, fetchFromGitHub }:
|
||
|
||
stdenvNoCC.mkDerivation rec {
|
||
pname = "gandom-fonts";
|
||
version = "0.8";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "rastikerdar";
|
||
repo = "gandom-font";
|
||
rev = "v${version}";
|
||
hash = "sha256-nez8T0TtRLyXxIIR69LrVGde5ThCvA0fLXkYLyYQRV8=";
|
||
};
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
|
||
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/gandom-fonts {} \;
|
||
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
homepage = "https://github.com/rastikerdar/gandom-font";
|
||
description = "Persian (Farsi) Font - فونت (قلم) فارسی گندم";
|
||
license = licenses.ofl;
|
||
platforms = platforms.all;
|
||
maintainers = [ ];
|
||
};
|
||
}
|