jool-cli 4.1.9 -> 4.1.10 https://github.com/NICMx/Jool/releases attrpath: jool-cli Checking auto update branch... No auto update branch exists Old version 4.1.9" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config, libnl, iptables }: let sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; }; in stdenv.mkDerivation { pname = "jool-cli"; version = sourceAttrs.version; src = sourceAttrs.src; patches = [ (fetchpatch { url = "https://github.com/NICMx/Jool/commit/490ddb0933061cab3c2a7952dffc61789deed565.patch"; hash = "sha256-1dpMth0ocPHujlk+96St1a63RipcWiL/CdmSz4O87Lg="; }) ]; outputs = [ "out" "man" ]; 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 ]; }; }