about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-01-16 14:44:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2021-01-16 14:44:00 -0500
commitc25e63ff9a952ce91a4f1f863129adfaba931219 (patch)
treeca00f5fe6e23aed15d8fdc7293b4318179a5da86 /pkgs/data
parent04da76396584bf757e3b4b7c65871d915dc3679b (diff)
downloadnixlib-c25e63ff9a952ce91a4f1f863129adfaba931219.tar
nixlib-c25e63ff9a952ce91a4f1f863129adfaba931219.tar.gz
nixlib-c25e63ff9a952ce91a4f1f863129adfaba931219.tar.bz2
nixlib-c25e63ff9a952ce91a4f1f863129adfaba931219.tar.lz
nixlib-c25e63ff9a952ce91a4f1f863129adfaba931219.tar.xz
nixlib-c25e63ff9a952ce91a4f1f863129adfaba931219.tar.zst
nixlib-c25e63ff9a952ce91a4f1f863129adfaba931219.zip
_3270font: 2.1.0 -> 2.2.1
https://github.com/rbanffy/3270font/releases/tag/v2.2.1
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/fonts/3270font/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/data/fonts/3270font/default.nix b/pkgs/data/fonts/3270font/default.nix
index a972bd7c3d8b..dacfdfbcceae 100644
--- a/pkgs/data/fonts/3270font/default.nix
+++ b/pkgs/data/fonts/3270font/default.nix
@@ -1,24 +1,25 @@
 { lib, fetchzip }:
 let
-  version = "2.1.0";
+  version = "2.2.1";
 in
 fetchzip {
   name = "3270font-${version}";
 
-  url = "https://github.com/rbanffy/3270font/releases/download/v.${version}/3270_fonts_fba25eb.zip";
+  url = "https://github.com/rbanffy/3270font/releases/download/v${version}/3270_fonts_70de9c7.zip";
 
-  sha256 = "04xqgiznd6d3c1rdbbdmd87rjy9bnhh00lm8xzmal1zidcr2g0n9";
+  sha256 = "0spz9abp87r3bncjim6hs47fmhg86qbgips4x6nfpqzg5qh2xd2m";
 
   postFetch = ''
     mkdir -p $out/share/fonts/
     unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
     unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
-    unzip -j $downloadedFile \*.woff -d $out/share/fonts/woff
+    unzip -j $downloadedFile \*.afm -d $out/share/fonts/type1
   '';
 
   meta = with lib; {
     description = "Monospaced font based on IBM 3270 terminals";
     homepage = "https://github.com/rbanffy/3270font";
+    changelog = "https://github.com/rbanffy/3270font/blob/v${version}/CHANGELOG.md";
     license = [ licenses.bsd3 licenses.ofl ];
     maintainers = [ maintainers.marsam ];
     platforms = platforms.all;