2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-12 16:53:21 +00:00
nixpkgs/pkgs/data/fonts/nika-fonts/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
630 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
2019-03-30 02:28:14 +00:00
let
2019-03-30 02:28:14 +00:00
pname = "nika-fonts";
version = "1.0.0";
2019-08-13 21:52:01 +00:00
in fetchFromGitHub {
name = "${pname}-${version}";
owner = "font-store";
repo = "NikaFont";
rev = "v${version}";
2019-03-30 02:28:14 +00:00
postFetch = ''
tar xf $downloadedFile --strip=1
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/nika-fonts {} \;
2019-03-30 02:28:14 +00:00
'';
sha256 = "1x34b2dqn1dymi1vmj5vrjcy2z8s0f3rr6cniyrz85plvid6x40i";
2019-03-30 02:28:14 +00:00
meta = with lib; {
homepage = "https://github.com/font-store/NikaFont/";
2019-03-30 02:28:14 +00:00
description = "Persian/Arabic Open Source Font";
license = licenses.ofl;
platforms = platforms.all;
2022-02-20 04:20:00 +00:00
maintainers = [ ];
2019-03-30 02:28:14 +00:00
};
}