2021-03-28 16:24:48 +00:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
2021-12-04 17:35:35 +00:00
|
|
|
, protobuf
|
|
|
|
, go-protobuf
|
2021-03-28 16:24:48 +00:00
|
|
|
, pkg-config
|
|
|
|
, libnetfilter_queue
|
|
|
|
, libnfnetlink
|
|
|
|
, lib
|
2021-09-13 18:47:32 +00:00
|
|
|
, coreutils
|
|
|
|
, iptables
|
2021-12-10 09:46:43 +00:00
|
|
|
, makeWrapper
|
2022-02-04 11:07:14 +00:00
|
|
|
, protoc-gen-go-grpc
|
2023-03-11 11:11:26 +00:00
|
|
|
, testers
|
|
|
|
, opensnitch
|
2021-03-28 16:24:48 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "opensnitch";
|
2023-07-31 16:18:09 +00:00
|
|
|
version = "1.6.1";
|
2021-03-28 16:24:48 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "evilsocket";
|
|
|
|
repo = "opensnitch";
|
|
|
|
rev = "v${version}";
|
2023-07-31 16:18:09 +00:00
|
|
|
sha256 = "sha256-yEo5nga0WTbgZm8W2qbJcTOO4cCzFWrjRmTBCFH7GLg=";
|
2021-03-28 16:24:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
modRoot = "daemon";
|
|
|
|
|
2023-07-31 16:18:09 +00:00
|
|
|
buildInputs = [
|
|
|
|
libnetfilter_queue
|
|
|
|
libnfnetlink
|
|
|
|
];
|
2021-12-10 09:46:43 +00:00
|
|
|
|
2023-07-31 16:18:09 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
protobuf
|
|
|
|
go-protobuf
|
|
|
|
makeWrapper
|
|
|
|
protoc-gen-go-grpc
|
|
|
|
];
|
2021-12-10 09:46:43 +00:00
|
|
|
|
2023-07-31 16:18:09 +00:00
|
|
|
vendorSha256 = "sha256-bUzGWpQxeXzvkzQ7G53ljQJq6wwqiXqbi6bgeFlNvvM=";
|
2021-12-04 17:35:35 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
2022-11-19 18:08:52 +00:00
|
|
|
# Fix inconsistent vendoring build error
|
|
|
|
# https://github.com/evilsocket/opensnitch/issues/770
|
|
|
|
cp ${./go.mod} go.mod
|
|
|
|
cp ${./go.sum} go.sum
|
|
|
|
|
2021-12-04 17:35:35 +00:00
|
|
|
make -C ../proto ../daemon/ui/protocol/ui.pb.go
|
|
|
|
'';
|
2021-12-10 09:46:43 +00:00
|
|
|
|
2021-03-28 16:24:48 +00: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 18:47:32 +00: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 18:47:32 +00:00
|
|
|
--replace "/etc/opensnitchd/rules" "/var/lib/opensnitch/rules" \
|
|
|
|
--replace "/bin/mkdir" "${coreutils}/bin/mkdir"
|
2021-03-28 16:24:48 +00:00
|
|
|
'';
|
|
|
|
|
2021-12-10 09:46:43 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/opensnitchd \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ iptables ]}
|
|
|
|
'';
|
2021-03-28 16:24:48 +00:00
|
|
|
|
2023-03-11 11:11:26 +00:00
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = opensnitch;
|
|
|
|
command = "opensnitchd -version";
|
|
|
|
};
|
|
|
|
|
2021-03-28 16:24:48 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "An application firewall";
|
|
|
|
homepage = "https://github.com/evilsocket/opensnitch/wiki";
|
|
|
|
license = licenses.gpl3Only;
|
2022-12-03 09:56:50 +00:00
|
|
|
maintainers = with maintainers; [ onny ];
|
2021-03-28 16:24:48 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|