summary refs log tree commit diff
path: root/pkgs/data/fonts
diff options
context:
space:
mode:
authorIvan Timokhin <nixpkgs@ivan.timokhin.name>2023-09-02 12:58:16 +0300
committerIvan Timokhin <nixpkgs@ivan.timokhin.name>2023-10-26 22:52:26 +0300
commitf6d4bbb4f82dc0c68d11223138a07b9178603bcb (patch)
treef435b645daa7d9853be1f5b9523f3c113e75f8f0 /pkgs/data/fonts
parent8ed7ffbd79bdd6441f982adc6a8b00df1f7043ba (diff)
downloadnixpkgs-f6d4bbb4f82dc0c68d11223138a07b9178603bcb.tar
nixpkgs-f6d4bbb4f82dc0c68d11223138a07b9178603bcb.tar.gz
nixpkgs-f6d4bbb4f82dc0c68d11223138a07b9178603bcb.tar.bz2
nixpkgs-f6d4bbb4f82dc0c68d11223138a07b9178603bcb.tar.lz
nixpkgs-f6d4bbb4f82dc0c68d11223138a07b9178603bcb.tar.xz
nixpkgs-f6d4bbb4f82dc0c68d11223138a07b9178603bcb.tar.zst
nixpkgs-f6d4bbb4f82dc0c68d11223138a07b9178603bcb.zip
junicode: 2.002 -> 2.003
Release announcement:
https://github.com/psb1558/Junicode-font/releases/tag/v2.003

From it:

This is mostly a bug-fix version. It (1) fixes several non-functioning
tag sequences; (2) fixes an incompatibility with InDesign that caused
OpenType features to misbehave in that program; (3) improved several
outlines and adjusted badly positioned anchors.
Diffstat (limited to 'pkgs/data/fonts')
-rw-r--r--pkgs/data/fonts/junicode/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/data/fonts/junicode/default.nix b/pkgs/data/fonts/junicode/default.nix
index 63af7e05ebf..6a1c9e896e7 100644
--- a/pkgs/data/fonts/junicode/default.nix
+++ b/pkgs/data/fonts/junicode/default.nix
@@ -2,11 +2,11 @@
 
 stdenvNoCC.mkDerivation rec {
   pname = "junicode";
-  version = "2.002";
+  version = "2.003";
 
   src = fetchzip {
     url = "https://github.com/psb1558/Junicode-font/releases/download/v${version}/Junicode_${version}.zip";
-    hash = "sha256-AHy4uT0LEof69+ECoFlKmALPTTPbvRNjmFD240koWAE=";
+    hash = "sha256-PD4rAZKTLVVblrQZgWKuuSF693nv2Od/uj1IOav+8/0=";
   };
 
   outputs = [ "out" "doc" ];
@@ -14,11 +14,11 @@ stdenvNoCC.mkDerivation rec {
   installPhase = ''
     runHook preInstall
 
-    install -Dt $out/share/fonts/truetype TTF/*.ttf VAR/*.ttf
-    install -Dt $out/share/fonts/opentype OTF/*.otf
-    install -Dt $out/share/fonts/woff2 WOFF2/*.woff2
+    install -Dm 444 -t $out/share/fonts/truetype TTF/*.ttf VAR/*.ttf
+    install -Dm 444 -t $out/share/fonts/opentype OTF/*.otf
+    install -Dm 444 -t $out/share/fonts/woff2 WOFF2/*.woff2
 
-    install -Dt $doc/share/doc/${pname}-${version} docs/*.pdf
+    install -Dm 444 -t $doc/share/doc/${pname}-${version} docs/*.pdf
 
     runHook postInstall
   '';