about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/borg-sans-mono/default.nix
blob: 8037e5dc645f9d8dae0a27183f389dca728192ef (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
28
{ lib, stdenvNoCC, fetchzip }:

stdenvNoCC.mkDerivation {
  pname = "borg-sans-mono";
  version = "0.2.0";

  src = fetchzip {
    # https://github.com/marnen/borg-sans-mono/issues/19
    url = "https://github.com/marnen/borg-sans-mono/files/107663/BorgSansMono.ttf.zip";
    hash = "sha256-nn7TGeVm45t7QI8+eEREBTFg9aShYYKtdEYEwQwO2fQ=";
  };

  installPhase = ''
    runHook preInstall

    install -Dm644 *.ttf -t $out/share/fonts/truetype

    runHook postInstall
  '';

  meta = with lib; {
    description = "Droid Sans Mono Slashed + Hasklig-style ligatures";
    homepage = "https://github.com/marnen/borg-sans-mono";
    license = licenses.asl20;
    platforms = platforms.all;
    maintainers = with maintainers; [ atila ];
  };
}