4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper, ruby, bundlerEnv }:
|
|
|
|
let
|
|
env = bundlerEnv {
|
|
inherit ruby;
|
|
name = "metasploit-bundler-env";
|
|
gemdir = ./.;
|
|
};
|
|
in stdenv.mkDerivation rec {
|
|
pname = "metasploit-framework";
|
|
version = "6.0.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rapid7";
|
|
repo = "metasploit-framework";
|
|
rev = version;
|
|
sha256 = "1kh5alvw68lxnm1wcwbka983b5ww7bqvbkih831mrf6sfmv4wkxs";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
dontPatchELF = true; # stay away from exploit executables
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,share/msf}
|
|
|
|
cp -r * $out/share/msf
|
|
|
|
(
|
|
cd $out/share/msf/
|
|
for i in msf*; do
|
|
makeWrapper ${env}/bin/bundle $out/bin/$i \
|
|
--add-flags "exec ${ruby}/bin/ruby $out/share/msf/$i"
|
|
done
|
|
)
|
|
|
|
'';
|
|
|
|
# run with: nix-shell maintainers/scripts/update.nix --argstr path metasploit
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|