lol
0
fork

Configure Feed

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

at 23.11-beta 22 lines 576 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "brook"; 5 version = "20230606"; 6 7 src = fetchFromGitHub { 8 owner = "txthinking"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-F4muuU696YbKcPkpD1LAeyD8ghQAe65UdqV5wS1fATI="; 12 }; 13 14 vendorHash = "sha256-uKlO1x5sGM8B1htmvRt9kND7tuH36iLN/Mev77vwZ6M="; 15 16 meta = with lib; { 17 homepage = "https://github.com/txthinking/brook"; 18 description = "A cross-platform Proxy/VPN software"; 19 license = with licenses; [ gpl3Only ]; 20 maintainers = with maintainers; [ xrelkd ]; 21 }; 22}