nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 33 lines 758 B view raw
1{ 2 stdenvNoCC, 3 lib, 4 fetchFromGitHub, 5}: 6 7stdenvNoCC.mkDerivation { 8 pname = "bront_fonts"; 9 version = "0-unstable-2015-06-28"; 10 11 src = fetchFromGitHub { 12 owner = "chrismwendt"; 13 repo = "bront"; 14 rev = "aef23d9a11416655a8351230edb3c2377061c077"; 15 sha256 = "1sx2gv19pgdyccb38sx3qnwszksmva7pqa1c8m35s6cipgjhhgb4"; 16 }; 17 18 installPhase = '' 19 install -m444 -Dt $out/share/fonts/truetype *Bront.ttf 20 ''; 21 22 meta = with lib; { 23 description = "Bront Fonts"; 24 longDescription = "Ubuntu Mono Bront and DejaVu Sans Mono Bront fonts."; 25 homepage = "https://github.com/chrismwendt/bront"; 26 license = with licenses; [ 27 bitstreamVera 28 ufl 29 ]; 30 platforms = platforms.all; 31 maintainers = [ maintainers.grburst ]; 32 }; 33}