metasploit: reimplement using mkDerivation
Also fixes download location. Bumps version to 3.3.1, which is the closest to the original version for which a source archive is still available.
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchurl, makeWrapper, ruby }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "metasploit-framework-${version}";
|
||||
version = "3.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://downloads.metasploit.com/data/releases/archive/framework-${version}.tar.bz2";
|
||||
sha256 = "07clzw1zfnqjhyydsc4mza238isai58p7aygh653qxsqb9a0j7qw";
|
||||
};
|
||||
|
||||
buildInputs = [makeWrapper];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/msf
|
||||
mkdir -p $out/bin
|
||||
|
||||
cp -r * $out/share/msf
|
||||
|
||||
for i in $out/share/msf/msf*; do
|
||||
makeWrapper $i $out/bin/$(basename $i) --prefix RUBYLIB : $out/share/msf/lib
|
||||
done
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
patchShebangs $out/share/msf
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Metasploit Framework - a collection of exploits";
|
||||
homepage = https://github.com/rapid7/metasploit-framework/wiki;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user