summary refs log blame commit diff
path: root/pkgs/data/fonts/behdad-fonts/default.nix
blob: a0fcd5f7bbf53c0e09fb55545fb06bb5d0aeea23 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                         
 
   

                         
                    



                               
 


                                                                                    
     
                                                                  
 
                    






                                                        
{ lib, fetchFromGitHub }:

let
  pname = "behdad-fonts";
  version = "0.0.3";
in fetchFromGitHub {
  name = "${pname}-${version}";
  owner = "font-store";
  repo = "BehdadFont";
  rev = "v${version}";

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

  meta = with lib; {
    homepage = https://github.com/font-store/BehdadFont;
    description = "A Persian/Arabic Open Source Font";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = [ maintainers.linarcx ];
  };
}