about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/samim-fonts/default.nix
blob: b29114e6b1c4aedd132cb4179d03c2a58b4bd943 (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
{ lib, fetchFromGitHub }:

let
  pname = "samim-fonts";
  version = "4.0.4";
in fetchFromGitHub {
  name = "${pname}-${version}";

  owner = "rastikerdar";
  repo = "samim-font";
  rev = "v${version}";

  postFetch = ''
    tar xf $downloadedFile --strip=1
    find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/samim-fonts {} \;
  '';
  sha256 = "sha256-WYSJ2mAzAe5H0EaMYU3qNVcQ0lRuHsjZ11YmLnZ2FCo=";

  meta = with lib; {
    homepage = "https://github.com/rastikerdar/samim-font";
    description = "A Persian (Farsi) Font - فونت (قلم) فارسی صمیم";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = [ ];
  };
}