nixos-config/pkgs/default.nix

24 lines
690 B
Nix
Raw Normal View History

2021-10-09 03:20:14 +00:00
pkgs:
let
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 pkgs.emptyDirectory;
2021-10-09 03:20:14 +00:00
in
2021-11-01 20:02:30 +00:00
rec
{
2021-12-29 01:56:11 +00:00
bck-nerdfont = pkg ./bck-nerdfont.nix { };
2021-11-02 02:21:01 +00:00
binaryninja = pkg ./binary-ninja-personal { };
commander-x16 = pkg ./commander-x16 { };
gef = pkg ./gef { };
2022-01-01 09:37:51 +00:00
mp4grep = pkg ./mp4grep.nix { };
2021-11-08 05:48:57 +00:00
msfpc = pkg ./msfpc { };
2021-11-18 05:17:43 +00:00
security-toolbox = pkg ./security-toolbox { inherit gef msfpc webshells weevely security-wordlists; };
security-wordlists = pkg ./wordlists.nix { };
2021-11-02 02:21:01 +00:00
SpaceCadetPinball = pkg ./SpaceCadetPinball { };
stretchy-spaces = pkg ./stretchy-spaces { };
webshells = pkg ./webshells { };
weevely = pkg ./weevely { };
2021-11-01 20:02:30 +00:00
}