nixpkgs/pkgs/by-name/ne/nethoscope/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

60 lines
1.3 KiB
Nix

{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, alsa-lib
, libpcap
, expect
}:
rustPlatform.buildRustPackage rec {
pname = "nethoscope";
version = "0.1.1";
src = fetchFromGitHub {
owner = "vvilhonen";
repo = "nethoscope";
rev = "v${version}";
hash = "sha256-v7GO+d4b0N3heN10+WSUJEpcShKmx4BPR1FyZoELWzc=";
};
cargoHash = "sha256-0yLMscmjHeU8dRDzx3kgniCRsekg9ZJWdN13hyqJgDI=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
alsa-lib
libpcap
];
LD_LIBRARY_PATH = lib.makeLibraryPath [
libpcap
alsa-lib
];
doInstallCheck = true;
installCheckPhase = ''
if [[ "$(${expect}/bin/unbuffer "$out/bin/${pname}" --help 2> /dev/null | strings | grep ${version} | tr -d '\n')" == " ${version}" ]]; then
echo '${pname} smoke check passed'
else
echo '${pname} smoke check failed'
return 1
fi
'';
meta = with lib; {
description = "Listen to your network traffic";
longDescription = ''
Employ your built-in wetware pattern recognition and
signal processing facilities to understand your network traffic.
'';
homepage = "https://github.com/vvilhonen/nethoscope";
license = licenses.isc;
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.linux;
mainProgram = "nethoscope";
};
}