2021-03-28 17:24:48 +01:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
2021-12-04 17:35:35 +00:00
|
|
|
, protobuf
|
|
|
|
, go-protobuf
|
2021-03-28 17:24:48 +01:00
|
|
|
, pkg-config
|
|
|
|
, libnetfilter_queue
|
|
|
|
, libnfnetlink
|
|
|
|
, lib
|
2021-09-13 19:47:32 +01:00
|
|
|
, coreutils
|
|
|
|
, iptables
|
2021-12-10 09:46:43 +00:00
|
|
|
, makeWrapper
|
2022-02-04 11:07:14 +00:00
|
|
|
, protoc-gen-go-grpc
|
2021-03-28 17:24:48 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "opensnitch";
|
2022-02-04 11:07:14 +00:00
|
|
|
version = "1.5.0";
|
2021-03-28 17:24:48 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "evilsocket";
|
|
|
|
repo = "opensnitch";
|
|
|
|
rev = "v${version}";
|
2022-02-04 11:07:14 +00:00
|
|
|
sha256 = "sha256-vtD82v0VlaJtCICXduD3IxJ0xjlBuzGKLWLoCiwPX2I=";
|
2021-03-28 17:24:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
2021-12-04 17:35:35 +00:00
|
|
|
buildInputs = [ libnetfilter_queue libnfnetlink ];
|
2021-12-10 09:46:43 +00:00
|
|
|
|
2022-02-04 11:07:14 +00:00
|
|
|
nativeBuildInputs = [ pkg-config protobuf go-protobuf makeWrapper protoc-gen-go-grpc ];
|
2021-12-10 09:46:43 +00:00
|
|
|
|
2022-02-04 11:07:14 +00:00
|
|
|
vendorSha256 = "sha256-81BKMLuEXA/NeIjO7icBm48ROq6KxAxHtvP0nV5yM5A=";
|
2021-12-04 17:35:35 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
make -C ../proto ../daemon/ui/protocol/ui.pb.go
|
|
|
|
'';
|
2021-12-10 09:46:43 +00:00
|
|
|
|
2021-03-28 17:24:48 +01:00
|
|
|
postBuild = ''
|
|
|
|
mv $GOPATH/bin/daemon $GOPATH/bin/opensnitchd
|
2022-02-23 10:08:49 +00:00
|
|
|
mkdir -p $out/etc/opensnitchd $out/lib/systemd/system
|
|
|
|
cp system-fw.json $out/etc/opensnitchd/
|
|
|
|
substitute default-config.json $out/etc/default-config.json \
|
|
|
|
--replace "/var/log/opensnitchd.log" "/dev/stdout" \
|
|
|
|
--replace "iptables" "nftables" \
|
|
|
|
--replace "ebpf" "proc"
|
2021-09-13 19:47:32 +01:00
|
|
|
substitute opensnitchd.service $out/lib/systemd/system/opensnitchd.service \
|
2021-12-10 10:00:25 +00:00
|
|
|
--replace "/usr/local/bin/opensnitchd" "$out/bin/opensnitchd" \
|
2021-09-13 19:47:32 +01:00
|
|
|
--replace "/etc/opensnitchd/rules" "/var/lib/opensnitch/rules" \
|
|
|
|
--replace "/bin/mkdir" "${coreutils}/bin/mkdir"
|
2021-03-28 17:24:48 +01:00
|
|
|
'';
|
|
|
|
|
2021-12-10 09:46:43 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/opensnitchd \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ iptables ]}
|
|
|
|
'';
|
2021-03-28 17:24:48 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "An application firewall";
|
|
|
|
homepage = "https://github.com/evilsocket/opensnitch/wiki";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = [ maintainers.raboof ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|