nixos-config/pkgs/default.nix

18 lines
677 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";
x64 = x: if pkgs.system == "x86_64-linux" then x else empty;
2021-10-09 03:20:14 +00:00
in
2021-11-01 20:02:30 +00:00
rec
{
binaryninja = x64 (pkgs.callPackage ./binary-ninja-personal { });
commander-x16 = pkgs.callPackage ./commander-x16 { };
gef = pkgs.callPackage ./gef { };
packettracer = x64 (pkgs.callPackage ./packettracer { });
security-toolbox = x64 (pkgs.callPackage ./security-toolbox { inherit gef webshells weevely; });
SpaceCadetPinball = x64 (pkgs.callPackage ./SpaceCadetPinball { });
stretchy-spaces = pkgs.callPackage ./stretchy-spaces { };
webshells = pkgs.callPackage ./webshells { };
weevely = pkgs.callPackage ./weevely { };
}