32 lines
560 B
Nix
32 lines
560 B
Nix
{
|
|
description = ''
|
|
'';
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
config.allowUnfree = true;
|
|
};
|
|
in {
|
|
devShells.default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
ghidra-bin
|
|
ltrace
|
|
nikto
|
|
nmap
|
|
smbclient-ng
|
|
strace
|
|
|
|
steam-run
|
|
];
|
|
};
|
|
});
|
|
}
|
|
|