mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
metasploit-env: avoid top-level with in shell.nix
This commit is contained in:
parent
fc267a3eb3
commit
1dfa4e2a3f
|
@ -1,9 +1,11 @@
|
|||
# Env to update Gemfile.lock / gemset.nix
|
||||
with import <nixpkgs> {};
|
||||
stdenv.mkDerivation {
|
||||
{
|
||||
pkgs ? import ../../../.. { },
|
||||
}:
|
||||
pkgs.stdenv.mkDerivation {
|
||||
name = "env";
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [
|
||||
nativeBuildInputs = [ pkgs.pkg-config ];
|
||||
buildInputs = with pkgs; [
|
||||
bundix
|
||||
git
|
||||
libiconv
|
||||
|
|
Loading…
Reference in a new issue