about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/siji/default.nix
blob: a0acf78d855d1b650c7e30f75c1368ae5d4630bd (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
25
26
{ lib, fetchzip }:

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

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

  postFetch = ''
    unzip -j $downloadedFile

    install -D *.pcf -t $out/share/fonts/pcf
    install -D *.bdf -t $out/share/fonts/bdf
  '';

  sha256 = "1ymcbirdbkqaf0xs2y00l0wachb4yxh1fgqm5avqwvccs0lsfj1d";

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