lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 27 lines 677 B view raw
1{ buildGoModule, fetchFromGitHub, lib }: 2 3buildGoModule rec { 4 pname = "bunnyfetch"; 5 version = "0.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "Rosettea"; 9 repo = "bunnyfetch"; 10 rev = "v${version}"; 11 sha256 = "sha256-6MnjCXc9/8twdf8PHKsVJY1yWYwUf5R01vtQFJbyy7M="; 12 }; 13 14 vendorHash = "sha256-w+O1dU8t7uNvdlFnYhCdJCDixpWWZAnj9GrtsCbu9SM="; 15 16 # No upstream tests 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Tiny system info fetch utility"; 21 homepage = "https://github.com/Rosettea/bunnyfetch"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ devins2518 ]; 24 platforms = platforms.linux; 25 mainProgram = "bunnyfetch"; 26 }; 27}