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

26 lines
657 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
2019-03-31 18:44:01 +02:00
let
2019-03-31 18:44:01 +02:00
pname = "behdad-fonts";
version = "0.0.3";
2019-08-13 23:52:01 +02:00
in fetchFromGitHub {
name = "${pname}-${version}";
owner = "font-store";
repo = "BehdadFont";
rev = "v${version}";
2019-03-31 18:44:01 +02:00
postFetch = ''
tar xf $downloadedFile --strip=1
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/behrad-fonts {} \;
2019-03-31 18:44:01 +02:00
'';
sha256 = "0c57232462cv1jrfn0m2bl7jzcfkacirrdd2qimrc8iqhkz0ajfz";
2019-03-31 18:44:01 +02:00
meta = with lib; {
2019-03-31 18:44:01 +02:00
homepage = https://github.com/font-store/BehdadFont;
description = "A Persian/Arabic Open Source Font";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.linarcx ];
};
}