nixpkgs/pkgs/os-specific/linux/jool/cli.nix
2019-04-20 09:42:48 +01:00

29 lines
755 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libnl, iptables }:
let
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
in
stdenv.mkDerivation {
name = "jool-cli-${sourceAttrs.version}";
src = sourceAttrs.src;
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libnl iptables ];
makeFlags = "-C src/usr";
prePatch = ''
sed -e 's%^XTABLES_SO_DIR = .*%XTABLES_SO_DIR = '"$out"'/lib/xtables%g' -i src/usr/iptables/Makefile
'';
meta = with stdenv.lib; {
homepage = https://www.jool.mx/;
description = "Fairly compliant SIIT and Stateful NAT64 for Linux - CLI tools";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ fpletz ];
};
}