about summary refs log tree commit diff
path: root/pkgs/tools/security/metasploit/shell.nix
blob: ccd510f63af209a1a22cd5edcdfef127467be704 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Env to update Gemfile.lock / gemset.nix
with import <nixpkgs> {};
stdenv.mkDerivation {
  name = "env";
  nativeBuildInputs = [ pkg-config ];
  buildInputs = [
    bundix
    git
    libiconv
    libpcap
    libxml2
    libxslt
    postgresql
    ruby.devEnv
    sqlite
  ];
}