summary refs log tree commit diff
path: root/pkgs/data/fonts/scheherazade
diff options
context:
space:
mode:
authorJake Waksbaum <jake.waksbaum@gmail.com>2018-04-04 02:18:23 +0000
committerJake Waksbaum <jake.waksbaum@gmail.com>2018-04-04 02:35:21 +0000
commit491bac13f98db0629f29a9bbcdd63410aef63530 (patch)
tree17481580419b4347cae14c0e09c2b579cc317f5f /pkgs/data/fonts/scheherazade
parent5a53b98248d76ad2ec5a6457f208af8890e308f6 (diff)
downloadnixpkgs-491bac13f98db0629f29a9bbcdd63410aef63530.tar
nixpkgs-491bac13f98db0629f29a9bbcdd63410aef63530.tar.gz
nixpkgs-491bac13f98db0629f29a9bbcdd63410aef63530.tar.bz2
nixpkgs-491bac13f98db0629f29a9bbcdd63410aef63530.tar.lz
nixpkgs-491bac13f98db0629f29a9bbcdd63410aef63530.tar.xz
nixpkgs-491bac13f98db0629f29a9bbcdd63410aef63530.tar.zst
nixpkgs-491bac13f98db0629f29a9bbcdd63410aef63530.zip
scheherazade: init at 2.100
Diffstat (limited to 'pkgs/data/fonts/scheherazade')
-rw-r--r--pkgs/data/fonts/scheherazade/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/data/fonts/scheherazade/default.nix b/pkgs/data/fonts/scheherazade/default.nix
new file mode 100644
index 00000000000..b35f537c06b
--- /dev/null
+++ b/pkgs/data/fonts/scheherazade/default.nix
@@ -0,0 +1,43 @@
+{ stdenv, fetchzip }:
+
+let
+  version = "2.100";
+in fetchzip rec {
+  name = "scheherazade-${version}";
+
+  url = "http://software.sil.org/downloads/r/scheherazade/Scheherazade-${version}.zip";
+
+  postFetch = ''
+    mkdir -p $out/share/{doc,fonts}
+    unzip -l $downloadedFile
+    unzip -j $downloadedFile \*.ttf                        -d $out/share/fonts/truetype
+    unzip -j $downloadedFile \*/FONTLOG.txt  \*/README.txt -d $out/share/doc/${name}
+    unzip -j $downloadedFile \*/documentation/\*           -d $out/share/doc/${name}/documentation
+  '';
+
+  sha256 = "1g5f5f9gzamkq3kqyf7vbzvl4rdj3wmjf6chdrbxksrm3rnb926z";
+
+  meta = with stdenv.lib; {
+    homepage = https://software.sil.org/scheherazade/;
+    description = "A font designed in a similar style to traditional Naskh typefaces";
+    longDescription = ''
+      Scheherazade, named after the heroine of the classic Arabian Nights tale,
+      is designed in a similar style to traditional typefaces such as Monotype
+      Naskh, extended to cover the Unicode Arabic repertoire through Unicode
+      8.0.
+
+      Scheherazade provides a “simplified” rendering of Arabic script, using
+      basic connecting glyphs but not including a wide variety of additional
+      ligatures or contextual alternates (only the required lam-alef
+      ligatures). This simplified style is often preferred for clarity,
+      especially in non-Arabic languages, but may not be considered appropriate
+      in situations where a more elaborate style of calligraphy is preferred.
+
+      This package contains the regular and bold styles for the Scheherazade
+      font family, along with documentation.
+    '';
+    downloadPage = "https://software.sil.org/scheherazade/download/";
+    license = licenses.ofl;
+    platforms = platforms.all;
+  };
+}