about summary refs log tree commit diff
path: root/pkgs/data/fonts
diff options
context:
space:
mode:
authorIvan Timokhin <nixpkgs@ivan.timokhin.name>2024-01-09 06:47:17 +0300
committerIvan Timokhin <nixpkgs@ivan.timokhin.name>2024-01-09 06:47:17 +0300
commitb2429f864b07ac8a2d238fb7316d1178cfe91de5 (patch)
tree12314fc342782b0019cb00c622f41411234162da /pkgs/data/fonts
parent2b9af27096395874bf66df2f6dc8cd0813bf745e (diff)
junicode: 2.205 -> 2.206
Changelog:
https://github.com/psb1558/Junicode-font/releases/tag/v2.206

TeX package documentation is now part of the main manual, so no
separate texdoc output anymore.
Diffstat (limited to 'pkgs/data/fonts')
-rw-r--r--pkgs/data/fonts/junicode/default.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/pkgs/data/fonts/junicode/default.nix b/pkgs/data/fonts/junicode/default.nix
index 1715dce9bba03..1bc12ad70abbd 100644
--- a/pkgs/data/fonts/junicode/default.nix
+++ b/pkgs/data/fonts/junicode/default.nix
@@ -2,14 +2,14 @@
 
 stdenvNoCC.mkDerivation rec {
   pname = "junicode";
-  version = "2.205";
+  version = "2.206";
 
   src = fetchzip {
     url = "https://github.com/psb1558/Junicode-font/releases/download/v${version}/Junicode_${version}.zip";
-    hash = "sha256-/9vkc6Ic3xyfpKEE64dBpoVM/gcRsLnAcrZWie9lNa4=";
+    hash = "sha256-oOKg85Yz5/2/pvwjVqeQXE8xE7X+QJvPYwYN+E18oEc=";
   };
 
-  outputs = [ "out" "doc" "tex" "texdoc" ];
+  outputs = [ "out" "doc" "tex" ];
 
   patches = [ ./tex-font-path.patch ];
 
@@ -33,15 +33,6 @@ stdenvNoCC.mkDerivation rec {
     install -Dm 444 -t $tex/tex/latex/junicode TeX/junicode.sty
     install -Dm 444 -t $tex/tex/latex/junicodevf TeX/junicodevf.{sty,lua}
 
-    install -Dm 444 -t $texdoc/doc/tex/latex/junicode TeX/junicode-package.pdf
-    install -Dm 444 -t $texdoc/doc/tex/latex/junicodevf TeX/junicodevf-package.pdf
-
-    cat >$texdoc/doc/tex/latex/junicode/nix-font-note.txt <<EOF
-    The style file is patched to refer directly to the corresponding
-    font files; thus, contrary to the documentation, the fonts
-    do *not* have to be installed globally.
-    EOF
-
     runHook postInstall
   '';