summary refs log tree commit diff
path: root/pkgs/data/fonts/camingo-code/default.nix
blob: c852303021d099910d54df0252cbfff195413dd0 (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
27
{ lib, stdenvNoCC, fetchzip }:

stdenvNoCC.mkDerivation rec {
  pname = "camingo-code";
  version = "1.0";

  src = fetchzip {
    url = "https://github.com/chrissimpkins/codeface/releases/download/font-collection/codeface-fonts.zip";
    hash = "sha256-oo5pWDq6h0bmyGvfF9Bkh7WyjKX4dG8uclfIsWLhDw8=";
  };

  installPhase = ''
    runHook preInstall

    install -Dm644 camingo-code/*.ttf -t $out/share/fonts/truetype
    install -Dm644 camingo-code/*.txt -t $out/share/doc/${pname}-${version}

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://www.myfonts.com/fonts/jan-fromm/camingo-code/";
    description = "A monospaced typeface designed for source-code editors";
    platforms = platforms.all;
    license = licenses.cc-by-nd-30;
  };
}