nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

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

at devShellTools-shell 38 lines 870 B view raw
1{ 2 lib, 3 stdenv, 4 buildGoModule, 5 fetchFromGitHub, 6 libpcap, 7}: 8 9buildGoModule rec { 10 pname = "godspeed"; 11 version = "1.0"; 12 13 src = fetchFromGitHub { 14 owner = "redcode-labs"; 15 repo = "GodSpeed"; 16 tag = version; 17 hash = "sha256-y/mCfNWe5ShdxEz8IUQ8zUzgVkUy/+5lX6rcJ3r6KoI="; 18 }; 19 20 vendorHash = "sha256-DCDAuKvov4tkf77nJNo9mQU/bAeQasp4VBQRtLX+U6c="; 21 22 buildInputs = [ libpcap ]; 23 24 postFixup = '' 25 mv $out/bin/GodSpeed $out/bin/${pname} 26 ''; 27 28 meta = { 29 description = "Manager for reverse shells"; 30 homepage = "https://github.com/redcode-labs/GodSpeed"; 31 changelog = "https://github.com/redcode-labs/GodSpeed/releases/tag/${version}"; 32 license = lib.licenses.mit; 33 maintainers = with lib.maintainers; [ fab ]; 34 teams = [ lib.teams.redcodelabs ]; 35 mainProgram = "godspeed"; 36 broken = stdenv.hostPlatform.isDarwin; 37 }; 38}