bottom: add gpu recognition, new apple sdk, refactor (#360568)
[NixPkgs.git] / pkgs / by-name / sa / sahel-fonts / package.nix
blob30d09d2fa36fc77dd7573b9a347784af1e7c22fa
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "sahel-fonts";
9   version = "3.4.0";
11   src = fetchFromGitHub {
12     owner = "rastikerdar";
13     repo = "sahel-font";
14     rev = "v${version}";
15     hash = "sha256-U4tIICXZFK9pk7zdzRwBPIPYFUlYXPSebnItUJUgGJY=";
16   };
18   installPhase = ''
19     runHook preInstall
21     find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/sahel-fonts {} \;
23     runHook postInstall
24   '';
26   meta = with lib; {
27     homepage = "https://github.com/rastikerdar/sahel-font";
28     description = "Persian (farsi) Font - فونت (قلم) فارسی ساحل";
29     license = licenses.ofl;
30     platforms = platforms.all;
31     maintainers = [ ];
32   };