fix binsync metadata
This commit is contained in:
parent
6b6dd9c66f
commit
6bba7ab0c4
|
@ -65,4 +65,11 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "binsync" ];
|
pythonImportsCheck = [ "binsync" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Reversing plugin for cross-decompiler collaboration, built on git";
|
||||||
|
homepage = "https://github.com/binsync/binsync";
|
||||||
|
changelog = "https://github.com/binsync/binsync/releases/tag/${src.tag}";
|
||||||
|
license = lib.licenses.bsd2;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,4 +67,11 @@
|
||||||
"tests/test_decompilers.py"
|
"tests/test_decompilers.py"
|
||||||
"tests/test_remote_ghidra.py"
|
"tests/test_remote_ghidra.py"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Library for writing plugins in any decompiler: includes API lifting, common data formatting, and GUI abstraction";
|
||||||
|
homepage = "https://github.com/binsync/libbs";
|
||||||
|
changelog = "https://github.com/binsync/libbs/releases/tag/${src.tag}";
|
||||||
|
license = lib.licenses.bsd2;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
binsync
|
binsync
|
||||||
] ++ binsync.optional-dependencies.ghidra));
|
] ++ binsync.optional-dependencies.ghidra));
|
||||||
in buildGhidraScripts {
|
in buildGhidraScripts {
|
||||||
pname = "binsync-ghidra";
|
pname = "BinSync";
|
||||||
inherit (python.pkgs.binsync) version;
|
inherit (python.pkgs.binsync) version;
|
||||||
|
|
||||||
src = runCommand "binsync-ghidra-scripts" {
|
src = runCommand "binsync-ghidra-scripts" {
|
||||||
|
@ -37,4 +37,10 @@ in buildGhidraScripts {
|
||||||
--replace-fail 'plugin_command = "binsync -s ghidra"' \
|
--replace-fail 'plugin_command = "binsync -s ghidra"' \
|
||||||
'plugin_command = "${lib.getExe' binsync_env "binsync"} -s ghidra"'
|
'plugin_command = "${lib.getExe' binsync_env "binsync"} -s ghidra"'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Reversing plugin for cross-decompiler collaboration, built on git";
|
||||||
|
homepage = "https://github.com/binsync/binsync";
|
||||||
|
license = lib.licenses.bsd2;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue