mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 16:11:58 +00:00
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub, makeWrapper, ruby, bundlerEnv }:
|
|
|
|
# Maintainer notes for updating:
|
|
# 1. increment version number in expression and in Gemfile
|
|
# 2. run $ nix-shell --command "bundler install && bundix"
|
|
# in metasploit in nixpkgs
|
|
# 3. run $ sed -i '/[ ]*dependencies =/d' gemset.nix
|
|
# 4. run $ nix-build -A metasploit ../../../../
|
|
# 5. update sha256sum in expression
|
|
# 6. run step 3 again
|
|
|
|
let
|
|
env = bundlerEnv {
|
|
inherit ruby;
|
|
name = "metasploit-bundler-env";
|
|
gemdir = ./.;
|
|
};
|
|
in stdenv.mkDerivation rec {
|
|
name = "metasploit-framework-${version}";
|
|
version = "4.16.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rapid7";
|
|
repo = "metasploit-framework";
|
|
rev = version;
|
|
sha256 = "1vilyy0dqzp8kbbpvs2zrv2ac7s39w2vv7mrbzgcjgh2bj7c6bg1";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
dontPatchelf = true; # stay away from exploit executables
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,share/msf}
|
|
|
|
cp -r * $out/share/msf
|
|
|
|
for i in $out/share/msf/msf*; do
|
|
bin=$out/bin/$(basename $i)
|
|
cat > $bin <<EOF
|
|
#!/bin/sh -e
|
|
exec ${env}/bin/bundle exec ${ruby}/bin/ruby $i "\$@"
|
|
EOF
|
|
chmod +x $bin
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Metasploit Framework - a collection of exploits";
|
|
homepage = https://github.com/rapid7/metasploit-framework/wiki;
|
|
platforms = platforms.unix;
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.makefu ];
|
|
};
|
|
}
|