tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python313Packages.ghidra-bridge: refactor
Fabian Affolter
1 year ago
f8f30327
38b3aba4
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
ghidra-bridge
default.nix
+6
-2
pkgs/development/python-modules/ghidra-bridge/default.nix
reviewed
···
4
4
fetchFromGitHub,
5
5
jfx-bridge,
6
6
setuptools,
7
7
-
wheel,
8
7
}:
9
8
10
9
buildPythonPackage rec {
···
19
20
};
20
21
21
22
patches = [ ./no-invoke-git.patch ];
23
23
+
22
24
postPatch = ''
23
25
substituteInPlace ./setup.py --subst-var-by version ${version}
24
26
'';
···
28
28
29
29
dependencies = [ jfx-bridge ];
30
30
31
31
+
# Tests require a running server instance
32
32
+
doCheck = false;
33
33
+
31
34
pythonImportsCheck = [ "ghidra_bridge" ];
32
35
33
36
meta = {
34
34
-
description = "Python 3 bridge to Ghidra's Python scripting";
37
37
+
description = "Python bridge to Ghidra's Python scripting";
35
38
homepage = "https://github.com/justfoxing/ghidra_bridge";
39
39
+
changelog = "https://github.com/justfoxing/ghidra_bridge/releases/tag/${src.tag}";
36
40
license = lib.licenses.mit;
37
41
maintainers = with lib.maintainers; [ scoder12 ];
38
42
};