about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2020-02-24 20:28:53 +0300
committerGitHub <noreply@github.com>2020-02-24 20:28:53 +0300
commitfd27f46cb34954462d4bf42be6e09508ab06491e (patch)
tree20d10ede1cafaadb62ee295cfbdece6d85d04953 /pkgs/data
parentee08bd8dec62eddd8244532e5068f97e80f92d9f (diff)
parent9d452922085509e8b1b6a6b78e35fd586417ba52 (diff)
downloadnixlib-fd27f46cb34954462d4bf42be6e09508ab06491e.tar
nixlib-fd27f46cb34954462d4bf42be6e09508ab06491e.tar.gz
nixlib-fd27f46cb34954462d4bf42be6e09508ab06491e.tar.bz2
nixlib-fd27f46cb34954462d4bf42be6e09508ab06491e.tar.lz
nixlib-fd27f46cb34954462d4bf42be6e09508ab06491e.tar.xz
nixlib-fd27f46cb34954462d4bf42be6e09508ab06491e.tar.zst
nixlib-fd27f46cb34954462d4bf42be6e09508ab06491e.zip
Merge pull request #79665 from emilazy/babelstone-han-13.0.3
babelstone-han: 12.1.7 -> 13.0.3
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/fonts/babelstone-han/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/data/fonts/babelstone-han/default.nix b/pkgs/data/fonts/babelstone-han/default.nix
index 0d46fc92d5f2..da2d67c084ff 100644
--- a/pkgs/data/fonts/babelstone-han/default.nix
+++ b/pkgs/data/fonts/babelstone-han/default.nix
@@ -1,16 +1,17 @@
 { lib, fetchzip }:
 
 let
-  version = "12.1.7";
+  version = "13.0.3";
 in fetchzip {
   name = "babelstone-han-${version}";
 
-  url = https://www.babelstone.co.uk/Fonts/Download/BabelStoneHan.zip;
+  # upstream download links are unversioned, so hash changes
+  url = https://web.archive.org/web/20200210125314/https://www.babelstone.co.uk/Fonts/Download/BabelStoneHan.zip;
   postFetch = ''
     mkdir -p $out/share/fonts/truetype
     unzip $downloadedFile '*.ttf' -d $out/share/fonts/truetype
   '';
-  sha256 = "07liv0lmk28ybxccf91gp2wmc17pk3fcshixpj0jx069b64zwf1v";
+  sha256 = "018isk3hbzsihzrxavgjbn485ngzvlm96npqx9y7zpkxsssslc4w";
 
   meta = with lib; {
     description = "Unicode CJK font with over 36000 Han characters";
@@ -18,7 +19,6 @@ in fetchzip {
 
     license = licenses.free;
     platforms = platforms.all;
-    hydraPlatforms = [];
-    maintainers = [ maintainers.volth ];
+    maintainers = with maintainers; [ volth emily ];
   };
 }