summary refs log tree commit diff
path: root/pkgs/data/fonts/vazir-code-font/default.nix
blob: 6ba69b57feafc93d8f27ab1c9ac1050c841e7b98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, stdenvNoCC, fetchFromGitHub }:

stdenvNoCC.mkDerivation rec {
  pname = "vazir-code-font";
  version = "1.1.2";

  src = fetchFromGitHub {
    owner = "rastikerdar";
    repo = "vazir-code-font";
    rev = "v${version}";
    hash = "sha256-iBojse3eHr4ucZtPfpkN+mmO6sEExY8WcAallyPgMsI=";
  };

  installPhase = ''
    runHook preInstall

    find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} \;

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://github.com/rastikerdar/vazir-code-font";
    description = "A Persian (farsi) Monospaced Font for coding";
    license = licenses.publicDomain;
    platforms = platforms.all;
    maintainers = [ maintainers.dearrude ];
  };
}