mdns-scanner: init at 0.12.1 (#418523)

This commit is contained in:
Aleksana
2025-06-21 17:29:40 +08:00
committed by GitHub
+31
View File
@@ -0,0 +1,31 @@
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "mdns-scanner";
version = "0.12.1";
src = fetchFromGitHub {
owner = "CramBL";
repo = "mdns-scanner";
tag = "v${finalAttrs.version}";
hash = "sha256-I0/ms1FFTGgSk101GBascTSMBCLAmzqk2yiNYskedvU=";
};
cargoHash = "sha256-JdeIEaSfiMCQ9n3Y4DpTWhheHaA54zJKUsG/e4Xo9LU=";
meta = {
homepage = "https://github.com/CramBL/mdns-scanner";
description = "Scan a network and create a list of IPs and associated hostnames, including mDNS hostnames and other aliases";
changelog = "https://github.com/CramBL/mdns-scanner/releases/tag/${finalAttrs.src.tag}";
license = with lib.licenses; [
asl20
mit
];
maintainers = with lib.maintainers; [ Cameo007 ];
mainProgram = "mdns-scanner";
};
})