Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchPypi,
|
|
bcc,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "picosnitch";
|
|
version = "1.0.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "78285e91b5c4d8e07529a34a7c3fe606acb6f950ee3cc78bb6c346bc2195b68a";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
setuptools
|
|
bcc
|
|
psutil
|
|
dbus-python
|
|
requests
|
|
pandas
|
|
plotly
|
|
dash
|
|
geoip2
|
|
];
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/${python3.sitePackages}/picosnitch.py --replace '/run/picosnitch.pid' '/run/picosnitch/picosnitch.pid'
|
|
'';
|
|
|
|
pythonImportsCheck = [ "picosnitch" ];
|
|
|
|
meta = with lib; {
|
|
description = "Monitor network traffic per executable with hashing";
|
|
mainProgram = "picosnitch";
|
|
homepage = "https://github.com/elesiuta/picosnitch";
|
|
changelog = "https://github.com/elesiuta/picosnitch/releases";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.elesiuta ];
|
|
platforms = platforms.linux;
|
|
knownVulnerabilities = [
|
|
"Allows an unprivileged user to write to arbitrary files as root; see https://github.com/elesiuta/picosnitch/issues/40"
|
|
];
|
|
};
|
|
}
|