evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ga / gandom-fonts / package.nix
blob5d128448f1c799e8b63cc8b4fbbe53d17fab3940
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "gandom-fonts";
5   version = "0.8";
7   src = fetchFromGitHub {
8     owner = "rastikerdar";
9     repo = "gandom-font";
10     rev = "v${version}";
11     hash = "sha256-nez8T0TtRLyXxIIR69LrVGde5ThCvA0fLXkYLyYQRV8=";
12   };
14   installPhase = ''
15     runHook preInstall
17     find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/gandom-fonts {} \;
19     runHook postInstall
20   '';
22   meta = with lib; {
23     homepage = "https://github.com/rastikerdar/gandom-font";
24     description = "Persian (Farsi) Font - فونت (قلم) فارسی گندم";
25     license = licenses.ofl;
26     platforms = platforms.all;
27     maintainers = [ ];
28   };