blob: 1f260741496a174b240b5755b25233f75157183d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ stdenv, lib, fetchgit
, bootstrapHook, pkg-config, gperf
, czmq, msgpack, libevent, base64c, logc-0_1, logc-libs
, check
}:
stdenv.mkDerivation rec {
pname = "sentinel-minipot";
version = "2.2";
meta = with lib; {
homepage = "https://gitlab.nic.cz/turris/sentinel/minipot";
description = "Firewall logs collector";
license = licenses.gpl3;
};
src = fetchgit {
url = "https://gitlab.nic.cz/turris/sentinel/minipot.git";
rev = "v" + version;
sha256 = "05p2q9mj8bhjapfphlrs45l691dmkpiia6ir1nnpa1pa5jy045p9";
};
buildInputs = [czmq msgpack libevent base64c logc-0_1 logc-libs];
nativeBuildInputs = [bootstrapHook pkg-config gperf];
depsBuildBuild = [check];
doCheck = true;
doInstallCheck = true;
configureFlags = lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "--enable-tests";
}
|