nixpkgs/pkgs/os-specific/linux/jool/cli.nix

29 lines
763 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libnl, iptables }:
let
2017-07-31 22:31:12 +00:00
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
in
stdenv.mkDerivation {
name = "jool-cli-${sourceAttrs.version}";
src = sourceAttrs.src;
nativeBuildInputs = [ autoreconfHook pkg-config ];
2019-04-20 08:42:48 +00:00
buildInputs = [ libnl iptables ];
makeFlags = [ "-C" "src/usr" ];
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
'';
meta = with lib; {
homepage = "https://www.jool.mx/";
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;
maintainers = with maintainers; [ fpletz ];
};
}