2025-06-07 00:48:50 +02:00

92 lines
2.2 KiB
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
libpcap,
libxkbcommon,
openssl,
stdenv,
alsa-lib,
expat,
fontconfig,
vulkan-loader,
wayland,
xorg,
}:
rustPlatform.buildRustPackage rec {
pname = "sniffnet";
version = "1.3.2";
src = fetchFromGitHub {
owner = "gyulyvgc";
repo = "sniffnet";
tag = "v${version}";
hash = "sha256-MWYCXLIv0euEHkfqZCxbfs1wFHkGIFk06wn7F8CIXx0=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-M7vIiGdH5+rdlqi603bfcXZavUAx2tU7+4sXb+QG+2g=";
nativeBuildInputs = [ pkg-config ];
buildInputs =
[
libpcap
openssl
]
++ lib.optionals stdenv.hostPlatform.isLinux [
alsa-lib
expat
fontconfig
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
rustPlatform.bindgenHook
];
# requires internet access
checkFlags = [
"--skip=secondary_threads::check_updates::tests::fetch_latest_release_from_github"
];
postInstall = ''
for res in $(ls resources/packaging/linux/graphics | sed -e 's/sniffnet_//g' -e 's/x.*//g'); do
install -Dm444 resources/packaging/linux/graphics/sniffnet_''${res}x''${res}.png \
$out/share/icons/hicolor/''${res}x''${res}/apps/sniffnet.png
done
install -Dm444 resources/packaging/linux/sniffnet.desktop -t $out/share/applications
substituteInPlace $out/share/applications/sniffnet.desktop \
--replace 'Exec=/usr/bin/sniffnet' 'Exec=sniffnet'
'';
postFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
patchelf $out/bin/sniffnet \
--add-rpath ${
lib.makeLibraryPath [
vulkan-loader
xorg.libX11
libxkbcommon
wayland
]
}
'';
meta = {
description = "Cross-platform application to monitor your network traffic with ease";
homepage = "https://github.com/gyulyvgc/sniffnet";
changelog = "https://github.com/gyulyvgc/sniffnet/blob/v${version}/CHANGELOG.md";
license = with lib.licenses; [
mit # or
asl20
];
maintainers = with lib.maintainers; [ figsoda ];
mainProgram = "sniffnet";
};
}