nixpkgs/pkgs/data/fonts/siji/default.nix

27 lines
657 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2017-01-29 23:49:25 +00:00
2017-08-10 19:43:49 +00:00
let
2017-01-29 23:49:25 +00:00
date = "2016-05-13";
2017-08-10 19:43:49 +00:00
in fetchzip {
name = "siji-${date}";
2017-01-29 23:49:25 +00:00
2017-08-10 19:43:49 +00:00
url = https://github.com/stark/siji/archive/95369afac3e661cb6d3329ade5219992c88688c1.zip;
2017-01-29 23:49:25 +00:00
2017-08-10 19:43:49 +00:00
postFetch = ''
unzip -j $downloadedFile
install -D *.pcf -t $out/share/fonts/pcf
install -D *.bdf -t $out/share/fonts/bdf
2017-01-29 23:49:25 +00:00
'';
sha256 = "1ymcbirdbkqaf0xs2y00l0wachb4yxh1fgqm5avqwvccs0lsfj1d";
2017-08-10 19:43:49 +00:00
2017-01-29 23:49:25 +00:00
meta = {
homepage = https://github.com/stark/siji;
2017-01-29 23:49:25 +00:00
description = "An iconic bitmap font based on Stlarch with additional glyphs";
license = lib.licenses.gpl2;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.asymmetric ];
2017-01-29 23:49:25 +00:00
};
}