about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/mno16/default.nix
blob: 1b311d2c25a2af863c9355e04a3da23b8c22e81f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, fetchzip }:

let
  pname = "mno16";
  version = "1.0";
in fetchzip rec {
  name = "${pname}-${version}";
  url = "https://github.com/sevmeyer/${pname}/releases/download/${version}/${name}.zip";
  sha256 = "1x06nl281fcjk6g1p4cgrgxakmwcci6vvasskaygsqlzxd8ig87w";

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

  meta = with lib; {
    description = "minimalist monospaced font";
    homepage = "https://sev.dev/fonts/mno16"; 
    license = licenses.cc0;
  };
}