nixos-config/pkgs/default.nix

22 lines
589 B
Nix
Raw Normal View History

2021-10-09 03:20:14 +00:00
pkgs:
let
2021-11-01 20:02:30 +00:00
empty = pkgs.runCommand "empty" { } "mkdir $out";
2021-11-02 02:21:01 +00:00
pkg = path: args:
let
p = pkgs.callPackage path args;
in
if p.meta.available then p else empty;
2021-10-09 03:20:14 +00:00
in
2021-11-01 20:02:30 +00:00
rec
{
2021-11-02 02:21:01 +00:00
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 { };
2021-11-01 20:02:30 +00:00
}