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