about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/bront/default.nix
blob: d21c820f127b9f04faf2709f792642d139666376 (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
{ stdenvNoCC, lib, fetchFromGitHub }:

stdenvNoCC.mkDerivation {
  pname = "bront_fonts";
  version = "unstable-2015-06-28";

  src = fetchFromGitHub {
    owner = "chrismwendt";
    repo = "bront";
    rev = "aef23d9a11416655a8351230edb3c2377061c077";
    sha256 = "1sx2gv19pgdyccb38sx3qnwszksmva7pqa1c8m35s6cipgjhhgb4";
  };

  installPhase = ''
    install -m444 -Dt $out/share/fonts/truetype *Bront.ttf
  '';

  meta = with lib; {
    description = "Bront Fonts";
    longDescription = "Ubuntu Mono Bront and DejaVu Sans Mono Bront fonts.";
    homepage = "https://github.com/chrismwendt/bront";
    license = licenses.free;
    platforms = platforms.all;
    maintainers = [ maintainers.grburst ];
  };
}