mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
Merge pull request #142255 from p-h/metasploit-fix-python-modules
metasploit: Fix python modules
This commit is contained in:
commit
54ef803bf8
|
@ -4,6 +4,7 @@
|
|||
, makeWrapper
|
||||
, ruby
|
||||
, bundlerEnv
|
||||
, python3
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -24,6 +25,7 @@ in stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [ (python3.withPackages (ps: [ ps.requests ])) ];
|
||||
|
||||
dontPatchELF = true; # stay away from exploit executables
|
||||
|
||||
|
@ -32,6 +34,8 @@ in stdenv.mkDerivation rec {
|
|||
|
||||
cp -r * $out/share/msf
|
||||
|
||||
grep -rl "^#\!.*python2$" $out/share/msf | xargs -d '\n' rm
|
||||
|
||||
(
|
||||
cd $out/share/msf/
|
||||
for i in msf*; do
|
||||
|
|
Loading…
Reference in a new issue