nixpkgs/pkgs/tools/security/metasploit/default.nix
Jörg Thalheim cf726bc31a
metasploit: 3.3.1 -> 4.14.17
use bundler env now

fixes #8870
2017-05-15 21:44:00 +01:00

52 lines
1.3 KiB
Nix

{ stdenv, fetchFromGitHub, makeWrapper, ruby, bundlerEnv, ncurses }:
# 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
let
env = bundlerEnv {
inherit ruby;
name = "metasploit-bundler-env";
gemdir = ./.;
};
in stdenv.mkDerivation rec {
name = "metasploit-framework-${version}";
version = "4.14.17";
src = fetchFromGitHub {
owner = "rapid7";
repo = "metasploit-framework";
rev = version;
sha256 = "0g666lxin9f0v9vhfh3s913ym8fnh32rpfl1rpj8d8n1azch5fn0";
};
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 ];
};
}