godspeed: unstable-2021-08-27 -> 1.0 (#362810)

This commit is contained in:
Fabian Affolter
2024-12-08 10:07:42 +01:00
committed by GitHub
+13 -13
View File
@@ -1,37 +1,37 @@
{ stdenv
, lib
, buildGoModule
, fetchFromGitHub
, libpcap
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
libpcap,
}:
buildGoModule rec {
pname = "godspeed";
version = "unstable-2021-08-27";
version = "1.0";
src = fetchFromGitHub {
owner = "redcode-labs";
repo = "GodSpeed";
rev = "c02b184ab0fd304d1bd8cbe1566a3d3de727975e";
sha256 = "sha256-y/mCfNWe5ShdxEz8IUQ8zUzgVkUy/+5lX6rcJ3r6KoI=";
rev = "refs/tags/${version}";
hash = "sha256-y/mCfNWe5ShdxEz8IUQ8zUzgVkUy/+5lX6rcJ3r6KoI=";
};
vendorHash = "sha256-DCDAuKvov4tkf77nJNo9mQU/bAeQasp4VBQRtLX+U6c=";
buildInputs = [
libpcap
];
buildInputs = [ libpcap ];
postFixup = ''
mv $out/bin/GodSpeed $out/bin/${pname}
'';
meta = with lib; {
broken = stdenv.hostPlatform.isDarwin;
description = "Manager for reverse shells";
homepage = "https://github.com/redcode-labs/GodSpeed";
license = with licenses; [ mit ];
changelog = "https://github.com/redcode-labs/GodSpeed/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ] ++ teams.redcodelabs.members;
mainProgram = "godspeed";
broken = stdenv.hostPlatform.isDarwin;
};
}