zenmap: init at 7.95 (#393262)

This commit is contained in:
Arne Keller 2025-05-02 09:23:27 +02:00 committed by GitHub
commit 989fbb18f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 88 additions and 0 deletions

View file

@ -16762,6 +16762,13 @@
githubId = 6295090;
name = "Mats";
};
mymindstorm = {
name = "Brendan Early";
email = "mymindstorm@evermiss.net";
github = "mymindstorm";
githubId = 27789806;
keys = [ { fingerprint = "52B9 A09F 788F 4D1F 0C94 9EBE EE39 A9F3 0C9D 72B5"; } ];
};
mynacol = {
github = "Mynacol";
githubId = 26695166;

View file

@ -0,0 +1,81 @@
{
gobject-introspection,
gtk3,
lib,
nmap,
python3Packages,
wrapGAppsHook3,
xterm,
}:
python3Packages.buildPythonApplication rec {
pname = "zenmap";
version = nmap.version;
pyproject = true;
src = nmap.src;
prePatch = ''
cd zenmap
'';
build-system = with python3Packages; [
setuptools
];
buildInputs = [
nmap
gtk3
xterm
];
nativeBuildInputs = [
wrapGAppsHook3
gobject-introspection
];
nativeCheckInputs = [
nmap
];
dependencies = with python3Packages; [
pygobject3
];
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
makeWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ nmap ]})
'';
postInstall = ''
# Icons
install -Dm 644 "zenmapCore/data/pixmaps/zenmap.png" -t "$out/share/pixmaps/"
# Desktop-files for application
install -Dm 644 "install_scripts/unix/zenmap.desktop" -t "$out/share/applications/"
install -Dm 644 "install_scripts/unix/zenmap-root.desktop" -t "$out/share/applications/"
install -Dm 755 "install_scripts/unix/su-to-zenmap.sh" -t "$out/bin/"
substituteInPlace "$out/bin/su-to-zenmap.sh" \
--replace-fail 'COMMAND="zenmap"' \
'COMMAND="'"$out/bin/zenmap"'"' \
--replace-fail 'xterm' \
'"${xterm}/bin/xterm"'
'';
checkPhase = ''
runHook preCheck
cd test
${python3Packages.python.interpreter} run_tests.py 2>&1 | tee /dev/stderr | tail -n1 | grep '^OK$'
runHook postCheck
'';
meta = nmap.meta // {
description = "Offical nmap Security Scanner GUI";
homepage = "https://nmap.org/zenmap/";
maintainers = with lib.maintainers; [
dvaerum
mymindstorm
];
};
}