mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
35 lines
760 B
Nix
35 lines
760 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, libpcap
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "godspeed";
|
|
version = "unstable-2021-08-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "redcode-labs";
|
|
repo = "GodSpeed";
|
|
rev = "c02b184ab0fd304d1bd8cbe1566a3d3de727975e";
|
|
sha256 = "sha256-y/mCfNWe5ShdxEz8IUQ8zUzgVkUy/+5lX6rcJ3r6KoI=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-MCr1ShhkxM9CeSmqqtgAW0qv0QaIPRSOzASj8gt2ZAg=";
|
|
|
|
buildInputs = [
|
|
libpcap
|
|
];
|
|
|
|
postFixup = ''
|
|
mv $out/bin/GodSpeed $out/bin/${pname}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Manager for reverse shells";
|
|
homepage = "https://github.com/redcode-labs/GodSpeed";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ] ++ teams.redcodelabs.members;
|
|
};
|
|
}
|