mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
21 lines
589 B
Nix
21 lines
589 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 { };
|
|
packettracer = pkg ./packettracer { };
|
|
security-toolbox = pkg ./security-toolbox { inherit gef webshells weevely; };
|
|
SpaceCadetPinball = pkg ./SpaceCadetPinball { };
|
|
stretchy-spaces = pkg ./stretchy-spaces { };
|
|
webshells = pkg ./webshells { };
|
|
weevely = pkg ./weevely { };
|
|
}
|