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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
774 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libnl, iptables }:
let
2017-08-01 00:31:12 +02:00
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
in
stdenv.mkDerivation {
2022-01-22 18:13:29 +01:00
pname = "jool-cli";
version = sourceAttrs.version;
src = sourceAttrs.src;
nativeBuildInputs = [ autoreconfHook pkg-config ];
2019-04-20 10:42:48 +02:00
buildInputs = [ libnl iptables ];
makeFlags = [ "-C" "src/usr" ];
2019-04-20 10:42:48 +02:00
prePatch = ''
sed -e 's%^XTABLES_SO_DIR = .*%XTABLES_SO_DIR = '"$out"'/lib/xtables%g' -i src/usr/iptables/Makefile
2016-10-03 17:58:38 +02: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 21:26:04 +02:00
license = licenses.gpl2;
maintainers = with maintainers; [ fpletz ];
};
}