nixpkgs/pkgs/data/fonts/samim-fonts/default.nix

27 lines
689 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
2019-03-31 18:03:48 +00:00
let
2019-03-31 18:03:48 +00:00
pname = "samim-fonts";
version = "3.1.0";
2019-08-13 21:52:01 +00:00
in fetchFromGitHub {
name = "${pname}-${version}";
2019-03-31 18:03:48 +00:00
owner = "rastikerdar";
repo = "samim-font";
rev = "v${version}";
2019-03-31 18:03:48 +00:00
postFetch = ''
tar xf $downloadedFile --strip=1
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/samim-fonts {} \;
2019-03-31 18:03:48 +00:00
'';
sha256 = "0mmhncqg48dp0d7l725dv909zswbkk22dlqzcdfh6k6cgk2gn08q";
2019-03-31 18:03:48 +00:00
meta = with lib; {
homepage = "https://github.com/rastikerdar/samim-font";
2019-03-31 18:03:48 +00:00
description = "A Persian (Farsi) Font - فونت (قلم) فارسی صمیم";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.linarcx ];
};
}