This commit is contained in:
xunuwu 2025-06-06 10:48:07 +02:00
parent b1a2c5a905
commit 40b0d84f53
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
36 changed files with 16 additions and 542 deletions

View file

@ -0,0 +1,22 @@
# patchelf --replace-needed libbinaryninjacore.so.1 ${symlinkJoin} $out/opt/binaryninja
{
pkgs,
self,
...
}: {
environment.systemPackages = with pkgs; [
(ghidra.withExtensions (ps:
with ps; [
gnudisassembler
machinelearning
]))
self.packages.${pkgs.system}.binaryninja-personal
self.packages.${pkgs.system}.ida-pro
gdb
];
networking.hosts = {
"0.0.0.0" = ["master.binary.ninja"]; # idk my binary ninja crack [AMPED] told me to
};
}