39 lines
851 B
Nix
39 lines
851 B
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper, metasploit, curl, inetutils, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "msfpc";
|
|
version = "1.4.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "g0tmi1k";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "UIdE0oSaNu16pf+M96x8AnNju88hdzokv86wm8uBYDQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 msfpc.sh $out/bin/msfpc
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/msfpc \
|
|
--prefix PATH : "${lib.makeBinPath [ metasploit curl inetutils openssl ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "MSFvenom Payload Creator";
|
|
homepage = "https://github.com/g0tmi1k/msfpc";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ emilytrau ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|