mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
178c7f61da
found at https://github.com/chrismwendt/bront/blob/master/DejaVuSansMono-LICENSE.txt and https://github.com/chrismwendt/bront/blob/master/UbuntuMono-LICENSE.txt
26 lines
733 B
Nix
26 lines
733 B
Nix
{ 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 = with licenses; [ bitstreamVera ufl ];
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.grburst ];
|
|
};
|
|
}
|