summary refs log tree commit diff
path: root/pkgs/data/fonts/siji/default.nix
blob: 99f0d913b8574a690b3dbaaf8ec2d6a7f8eea764 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchzip }:

let
  date = "2016-05-13";
in fetchzip {
  name = "siji-${date}";

  url = https://github.com/stark/siji/archive/95369afac3e661cb6d3329ade5219992c88688c1.zip;

  postFetch = ''
    mkdir -p $out/share/fonts
    unzip -j $downloadedFile \*.pcf -d $out/share/fonts/pcf
  '';

  sha256 = "1799hs7zd8w7qyja4mii9ggmrm786az7ldsqwx9mbi51b56ym640";

  meta = {
    homepage = https://github.com/stark/siji;
    description = "An iconic bitmap font based on Stlarch with additional glyphs";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.all;
    maintainers = [ stdenv.lib.maintainers.asymmetric ];
  };
}