From c2fc311cf1dc2827697b62a158758122a767d1ac Mon Sep 17 00:00:00 2001 From: eyjhb Date: Sat, 25 Oct 2025 13:12:45 +0200 Subject: [PATCH] compactor: adds patch for failing test Adds the patch https://github.com/dns-stats/compactor/commit/f7deaf89f55a12c586b6662a3a7d04b10a4c7bcb , which fixes the test failure when updating to Wireshark 4.6.0. --- pkgs/applications/networking/compactor/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/applications/networking/compactor/default.nix b/pkgs/applications/networking/compactor/default.nix index e783aef616c7..b2ab9dd0c9d8 100644 --- a/pkgs/applications/networking/compactor/default.nix +++ b/pkgs/applications/networking/compactor/default.nix @@ -2,6 +2,7 @@ lib, stdenv, fetchFromGitHub, + fetchpatch, asciidoctor, autoreconfHook, pkg-config, @@ -42,6 +43,12 @@ stdenv.mkDerivation rec { # https://github.com/dns-stats/compactor/pull/91 ./patches/update-golden-cbor2diag-output.patch + + # https://github.com/dns-stats/compactor/commit/f7deaf89f55a12c586b6662a3a7d04b10a4c7bcb + (fetchpatch { + url = "https://github.com/dns-stats/compactor/commit/f7deaf89f55a12c586b6662a3a7d04b10a4c7bcb.patch"; + hash = "sha256-eEaVS5rfrLkRGc668PwVfb/xw3n1SoCm30xEf1NjbeY="; + }) ]; nativeBuildInputs = [