2021-03-20 04:20:00 +00:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
2022-01-03 16:56:52 +00:00
|
|
|
, protobuf
|
|
|
|
, go-protobuf
|
2021-03-20 04:20:00 +00:00
|
|
|
, pkg-config
|
|
|
|
, libnetfilter_queue
|
|
|
|
, libnfnetlink
|
|
|
|
, lib
|
2021-09-18 10:52:07 +00:00
|
|
|
, iptables
|
2021-12-19 01:06:50 +00:00
|
|
|
, makeWrapper
|
2022-02-10 20:34:41 +00:00
|
|
|
, protoc-gen-go-grpc
|
2023-03-15 16:39:30 +00:00
|
|
|
, testers
|
|
|
|
, opensnitch
|
2023-08-22 20:05:09 +00:00
|
|
|
, nixosTests
|
2021-03-20 04:20:00 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "opensnitch";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "1.6.5.1";
|
2021-03-20 04:20:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "evilsocket";
|
|
|
|
repo = "opensnitch";
|
2024-02-29 20:09:43 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-IVrAAHzLS7A7cYhRk+IUx8/5TGKeqC7M/7iXOpPe2ZA=";
|
2021-03-20 04:20:00 +00:00
|
|
|
};
|
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
postPatch = ''
|
|
|
|
# Allow configuring Version at build time
|
|
|
|
substituteInPlace daemon/core/version.go --replace "const " "var "
|
|
|
|
'';
|
|
|
|
|
2021-03-20 04:20:00 +00:00
|
|
|
modRoot = "daemon";
|
|
|
|
|
2023-08-10 07:59:29 +00:00
|
|
|
buildInputs = [
|
|
|
|
libnetfilter_queue
|
|
|
|
libnfnetlink
|
|
|
|
];
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2023-08-10 07:59:29 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
protobuf
|
|
|
|
go-protobuf
|
|
|
|
makeWrapper
|
|
|
|
protoc-gen-go-grpc
|
|
|
|
];
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
vendorHash = "sha256-PX41xeUJb/WKv3+z5kbRmJNP1vFu8x35NZvN2Dgp4CQ=";
|
2022-01-03 16:56:52 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
2022-11-27 09:42:12 +00:00
|
|
|
# Fix inconsistent vendoring build error
|
|
|
|
# https://github.com/evilsocket/opensnitch/issues/770
|
|
|
|
cp ${./go.mod} go.mod
|
|
|
|
cp ${./go.sum} go.sum
|
|
|
|
|
2022-01-03 16:56:52 +00:00
|
|
|
make -C ../proto ../daemon/ui/protocol/ui.pb.go
|
|
|
|
'';
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2021-03-20 04:20:00 +00:00
|
|
|
postBuild = ''
|
|
|
|
mv $GOPATH/bin/daemon $GOPATH/bin/opensnitchd
|
2022-03-05 16:20:37 +00:00
|
|
|
mkdir -p $out/etc/opensnitchd $out/lib/systemd/system
|
|
|
|
cp system-fw.json $out/etc/opensnitchd/
|
2023-08-22 20:05:09 +00:00
|
|
|
substitute default-config.json $out/etc/opensnitchd/default-config.json \
|
|
|
|
--replace "/var/log/opensnitchd.log" "/dev/stdout"
|
2024-02-29 20:09:43 +00:00
|
|
|
# Do not mkdir rules path
|
|
|
|
sed -i '8d' opensnitchd.service
|
|
|
|
# Fixup hardcoded paths
|
2021-09-18 10:52:07 +00:00
|
|
|
substitute opensnitchd.service $out/lib/systemd/system/opensnitchd.service \
|
2024-02-29 20:09:43 +00:00
|
|
|
--replace "/usr/local/bin/opensnitchd" "$out/bin/opensnitchd"
|
2021-03-20 04:20:00 +00:00
|
|
|
'';
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X github.com/evilsocket/opensnitch/daemon/core.Version=${version}"
|
|
|
|
];
|
2023-10-19 13:55:26 +00:00
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/opensnitchd \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ iptables ]}
|
|
|
|
'';
|
2021-03-20 04:20:00 +00:00
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) opensnitch;
|
|
|
|
version = testers.testVersion {
|
|
|
|
package = opensnitch;
|
|
|
|
command = "opensnitchd -version";
|
|
|
|
};
|
2023-03-15 16:39:30 +00:00
|
|
|
};
|
|
|
|
|
2021-03-20 04:20:00 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "An application firewall";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "opensnitchd";
|
2021-03-20 04:20:00 +00:00
|
|
|
homepage = "https://github.com/evilsocket/opensnitch/wiki";
|
|
|
|
license = licenses.gpl3Only;
|
2022-12-17 10:02:37 +00:00
|
|
|
maintainers = with maintainers; [ onny ];
|
2021-03-20 04:20:00 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|