summary refs log tree commit diff
path: root/pkgs/data/fonts
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-09-26 07:25:24 +0100
committerGitHub <noreply@github.com>2017-09-26 07:25:24 +0100
commit430869ba3bf37d3a557b4a03208362b0dde549a6 (patch)
treee3271c90819fa83705fdf0c91c12955c04a86e1c /pkgs/data/fonts
parent057a6e027d32ccee0983737c60b25f00972eb796 (diff)
parent714a138857e00b2a996a8b61e1b31f45f7cf4b60 (diff)
downloadnixlib-430869ba3bf37d3a557b4a03208362b0dde549a6.tar
nixlib-430869ba3bf37d3a557b4a03208362b0dde549a6.tar.gz
nixlib-430869ba3bf37d3a557b4a03208362b0dde549a6.tar.bz2
nixlib-430869ba3bf37d3a557b4a03208362b0dde549a6.tar.lz
nixlib-430869ba3bf37d3a557b4a03208362b0dde549a6.tar.xz
nixlib-430869ba3bf37d3a557b4a03208362b0dde549a6.tar.zst
nixlib-430869ba3bf37d3a557b4a03208362b0dde549a6.zip
Merge pull request #29787 from siddharthist/tex-gyre-termes-math
tex-gyre-termes-math: init at 1.543
Diffstat (limited to 'pkgs/data/fonts')
-rw-r--r--pkgs/data/fonts/tex-gyre-termes-math/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/data/fonts/tex-gyre-termes-math/default.nix b/pkgs/data/fonts/tex-gyre-termes-math/default.nix
new file mode 100644
index 000000000000..83b157b085bc
--- /dev/null
+++ b/pkgs/data/fonts/tex-gyre-termes-math/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchzip }:
+
+stdenv.mkDerivation rec {
+  name = "tex-gyre-termes-math-${version}";
+  version = "1.543";
+
+  src = fetchzip {
+    url = "www.gust.org.pl/projects/e-foundry/tg-math/download/texgyretermes-math-1543.zip";
+    sha256 = "10ayqfpryfn1l35hy0vwyjzw3a6mfsnzgf78vsnccgk2gz1g9vhz";
+  };
+
+  installPhase = ''
+    mkdir -p $out/share/fonts/opentype/
+    mkdir -p $out/share/doc/${name}/
+    cp -v opentype/*.otf $out/share/fonts/opentype/
+    cp -v doc/*.txt $out/share/doc/${name}/
+  '';
+
+  outputHashAlgo = "sha256";
+  outputHashMode = "recursive";
+  outputHash = "0pa433cgshlypbyrrlp3qq0wg972rngcp37pr8pxdfshgz13q1mm";
+
+  meta = with stdenv.lib; {
+    longDescription = ''
+      TeX Gyre Termes Math is a math companion for the TeX Gyre Termes family
+      of fonts (see http://www.gust.org.pl/projects/e-foundry/tex-gyre/) in
+      the OpenType format.
+    '';
+    homepage = http://www.gust.org.pl/projects/e-foundry/tg-math;
+    # "The TeX Gyre Math fonts are licensed under the GUST Font License (GFL),
+    # which is a free license, legally equivalent to the LaTeX Project Public
+    # License (LPPL), version 1.3c or later." - GUST website
+    license = licenses.lppl13c;
+    maintainers = with maintainers; [ siddharthist ];
+    platforms = platforms.all;
+  };
+}