netscan: init at 0.8.1 (#526513)

This commit is contained in:
Fabian Affolter
2026-06-01 06:24:53 +00:00
committed by GitHub
+43
View File
@@ -0,0 +1,43 @@
{
lib,
fetchFromGitHub,
pkg-config,
rustPlatform,
sqlite,
versionCheckHook,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "netscan";
version = "0.8.1";
src = fetchFromGitHub {
owner = "matthart1983";
repo = "netscan";
tag = "v${finalAttrs.version}";
hash = "sha256-eWUUEdin8v8NIDEDJaHzKYaMyHeyp6d0ar23GkWvZLY=";
};
__structuredAttrs = true;
cargoHash = "sha256-4mhVNr62NrCPR5W7Qkfg2LAPInOltyfG/nyITROEKJY=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ sqlite ];
nativeCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
versionCheckProgramArg = [ "-V" ];
meta = {
description = "TUI workflow for nmap with scan history";
homepage = "https://github.com/matthart1983/netscan";
changelog = "https://github.com/matthart1983/netscan/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "netscan";
};
})