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

25 lines
652 B
Nix
Raw Normal View History

2017-08-10 19:43:49 +00:00
{ stdenv, 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 = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.pcf -d $out/share/fonts/pcf
2017-01-29 23:49:25 +00:00
'';
2017-08-10 19:43:49 +00:00
sha256 = "1799hs7zd8w7qyja4mii9ggmrm786az7ldsqwx9mbi51b56ym640";
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";
liscense = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.asymmetric ];
};
}