f46c4f5124
Just the daemon and ui programs. It would of course be nice to also have it available as a NixOS service, but I'd like to leave that as future work.
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, pkg-config
|
|
, libnetfilter_queue
|
|
, libnfnetlink
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "opensnitch";
|
|
version = "1.3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "evilsocket";
|
|
repo = "opensnitch";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Cgo+bVQQeUZuYYhA1WSqlLyQQGAeXbbNno9LS7oNvhI=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/evilsocket/opensnitch/pull/384 don't require
|
|
# a configuration file in /etc
|
|
(fetchpatch {
|
|
name = "dont-require-config-in-etc.patch";
|
|
url = "https://github.com/evilsocket/opensnitch/commit/8a3f63f36aa92658217bbbf46d39e6d20b2c0791.patch";
|
|
sha256 = "sha256-WkwjKTQZppR0nqvRO4xiQoKZ307NvuUwoRx+boIpuTg=";
|
|
})
|
|
];
|
|
|
|
modRoot = "daemon";
|
|
|
|
postBuild = ''
|
|
mv $GOPATH/bin/daemon $GOPATH/bin/opensnitchd
|
|
'';
|
|
|
|
vendorSha256 = "sha256-LMwQBFkHg1sWIUITLOX2FZi5QUfOivvrkcl9ELO3Trk=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libnetfilter_queue libnfnetlink ];
|
|
|
|
meta = with lib; {
|
|
description = "An application firewall";
|
|
homepage = "https://github.com/evilsocket/opensnitch/wiki";
|
|
license = licenses.gpl3Only;
|
|
maintainers = [ maintainers.raboof ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|