2019-04-20 09:42:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libnl, iptables }:
|
2015-06-29 11:58:07 +01:00
|
|
|
|
|
|
|
let
|
2017-07-31 23:31:12 +01:00
|
|
|
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
|
2015-06-29 11:58:07 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "jool-cli-${sourceAttrs.version}";
|
|
|
|
|
|
|
|
src = sourceAttrs.src;
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2019-04-20 09:42:48 +01:00
|
|
|
buildInputs = [ libnl iptables ];
|
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "-C" "src/usr" ];
|
2015-06-29 11:58:07 +01:00
|
|
|
|
2019-04-20 09:42:48 +01:00
|
|
|
prePatch = ''
|
|
|
|
sed -e 's%^XTABLES_SO_DIR = .*%XTABLES_SO_DIR = '"$out"'/lib/xtables%g' -i src/usr/iptables/Makefile
|
2016-10-03 16:58:38 +01:00
|
|
|
'';
|
|
|
|
|
2015-06-29 11:58:07 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jool.mx/";
|
2015-06-29 11:58:07 +01:00
|
|
|
description = "Fairly compliant SIIT and Stateful NAT64 for Linux - CLI tools";
|
|
|
|
platforms = platforms.linux;
|
2018-08-30 20:26:04 +01:00
|
|
|
license = licenses.gpl2;
|
2015-06-29 11:58:07 +01:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
};
|
|
|
|
}
|