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