about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/metasploit/shell.nix
blob: e4bae57b686697a9a56e23907748473b9bdfd946 (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";
  buildInputs = [
    bundix
    git
    libiconv
    libpcap
    libxml2
    libxslt
    pkg-config
    postgresql
    ruby.devEnv
    sqlite
  ];
}