nixpkgs/pkgs/data/fonts/amiri/default.nix
Vincent Laporte 85109b92cd
amiri: init at 0.111
Amiri is a classical Arabic typeface in Naskh style for typesetting books and
other running text.

Homepage: https://www.amirifont.org/
2019-06-27 08:03:06 +00:00

28 lines
669 B
Nix

{ lib, fetchzip }:
let
version = "0.111";
in fetchzip rec {
name = "Amiri-${version}";
url = "https://github.com/alif-type/amiri/releases/download/${version}/${name}.zip";
sha256 = "1w3a5na4mazspwy8j2hvpjha10sgd287kamm51p49jcr90cvwbdr";
postFetch = ''
unzip $downloadedFile
install -m444 -Dt $out/share/fonts/truetype ${name}/*.ttf
install -m444 -Dt $out/share/doc/${name} ${name}/{*.txt,*.pdf}
'';
meta = with lib; {
description = "A classical Arabic typeface in Naskh style";
homepage = "https://www.amirifont.org/";
license = licenses.ofl;
maintainers = [ maintainers.vbgl ];
platforms = platforms.all;
};
}