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