mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
ea7e19c21c
This reverts commit 1a706c0a27
.
23 lines
711 B
Nix
23 lines
711 B
Nix
pkgs:
|
|
let
|
|
empty = pkgs.runCommand "empty" { } "mkdir $out";
|
|
pkg = path: args:
|
|
let
|
|
p = pkgs.callPackage path args;
|
|
in
|
|
if p.meta.available then p else empty;
|
|
in
|
|
rec
|
|
{
|
|
binaryninja = pkg ./binary-ninja-personal { };
|
|
commander-x16 = pkg ./commander-x16 { };
|
|
gef = pkg ./gef { };
|
|
msfpc = pkg ./msfpc { };
|
|
security-toolbox = pkg ./security-toolbox { inherit gef msfpc webshells weevely security-wordlists; };
|
|
security-wordlists = pkg ./wordlists.nix { };
|
|
SpaceCadetPinball = pkg ./SpaceCadetPinball { };
|
|
stretchy-spaces = pkg ./stretchy-spaces { };
|
|
vmware-horizon-client = pkg ./vmware-horizon-client.nix { };
|
|
webshells = pkg ./webshells { };
|
|
weevely = pkg ./weevely { };
|
|
}
|