summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/he/hermit/package.nix
blob: 1f0bd0dcb30fe0a65d750152439d72882bf5b983 (plain)
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,
  stdenvNoCC,
  fetchzip,
  installFonts,
}:

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "hermit";
  version = "2.0";

  src = fetchzip {
    url = "https://pcaro.es/d/otf-hermit-${finalAttrs.version}.tar.gz";
    stripRoot = false;
    hash = "sha256-RYXZ2yJ8BIxsgeEwhXz7g0NnWG3kMPZoJaOLMUQyWWQ=";
  };
  nativeBuildInputs = [ installFonts ];

  meta = {
    description = "Monospace font designed to be clear, pragmatic and very readable";
    homepage = "https://pcaro.es/p/hermit";
    license = lib.licenses.ofl;
    maintainers = [ ];
    platforms = lib.platforms.all;
  };
})