2022-11-04T09:55:30 jool-cli 4.1.7 -> 4.1.8 https://github.com/NICMx/Jool/releases 2022-11-04T09:55:32 attrpath: jool-cli 2022-11-04T09:55:32 Checking auto update branch... 2022-11-04T09:55:32 No auto update branch exists 2022-11-04T09:55:33 Old version 4.1.7" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libnl, iptables }: let sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; }; in stdenv.mkDerivation { pname = "jool-cli"; version = sourceAttrs.version; src = sourceAttrs.src; nativeBuildInputs = [ autoreconfHook pkg-config ]; 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 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 ]; }; }