fix binsync metadata

This commit is contained in:
xenia 2025-09-13 23:20:31 -04:00
parent aa8b70931c
commit b1cdaa01d5
3 changed files with 21 additions and 1 deletions

View File

@ -65,4 +65,11 @@
];
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;
};
}

View File

@ -67,4 +67,11 @@
"tests/test_decompilers.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;
};
}

View File

@ -15,7 +15,7 @@
binsync
] ++ binsync.optional-dependencies.ghidra));
in buildGhidraScripts {
pname = "binsync-ghidra";
pname = "BinSync";
inherit (python.pkgs.binsync) version;
src = runCommand "binsync-ghidra-scripts" {
@ -37,4 +37,10 @@ in buildGhidraScripts {
--replace-fail 'plugin_command = "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;
};
}