blob: b059b6d8680c0330b162a3d2745dac655ebc1aae (
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
|
{ buildPythonApplication, lib, fetchgit
, ipset
}:
buildPythonApplication rec {
pname = "sentinel-dynfw-client";
version = "1.4.0";
meta = with lib; {
homepage = "https://gitlab.nic.cz/turris/sentinel/dynfw-client";
description = "Dynamic firewall client";
platforms = platforms.linux;
license = licenses.gpl3;
};
src = fetchgit {
url = "https://gitlab.nic.cz/turris/sentinel/dynfw-client.git";
rev = "v" + version;
sha256 = "1g0wbhsjzifvdfvig6922cl3yfj1f96yvg11s4vgiaxca9yspcmp";
};
buildInputs = [ipset];
preConfigure = ''
ls
find -type f | xargs sed -i 's#/usr/sbin/ipset#${ipset}#g'
'';
}
|