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

26 lines
659 B
Nix
Raw Normal View History

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