_3270font: init at 2.0.4

This commit is contained in:
Mario Rodas 2020-07-18 04:20:00 -05:00
parent ceb1527a61
commit 4703d4da7e
No known key found for this signature in database
GPG key ID: 325649BCA6D53027
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, fetchzip }:
let
version = "2.0.4";
in
fetchzip rec {
name = "3270font-${version}";
url = "https://github.com/rbanffy/3270font/releases/download/v${version}/3270_fonts_ece94f6.zip";
sha256 = "04q7dnrlq5hm30iibh3jafb33m5lwsgb3g9n9i188sg02ydkrsl9";
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
'';
meta = with lib; {
description = "Monospaced font based on IBM 3270 terminals";
homepage = "https://github.com/rbanffy/3270font";
license = [ licenses.bsd3 licenses.ofl ];
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}

View file

@ -18032,6 +18032,8 @@ in
### DATA
_3270font = callPackage ../data/fonts/3270font { };
adapta-backgrounds = callPackage ../data/misc/adapta-backgrounds { };
adapta-gtk-theme = callPackage ../data/themes/adapta { };