From 271e05bbfb2f3d08e548f4d5efc24a76ff705807 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 7 Oct 2024 09:28:00 +0300 Subject: [PATCH] ipscan: mark as broken (doesn't really launch) --- pkgs/tools/security/ipscan/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/security/ipscan/default.nix b/pkgs/tools/security/ipscan/default.nix index f61944fe63ea..149cd322219b 100644 --- a/pkgs/tools/security/ipscan/default.nix +++ b/pkgs/tools/security/ipscan/default.nix @@ -51,5 +51,7 @@ stdenv.mkDerivation rec { license = licenses.gpl2Only; platforms = [ "x86_64-linux" ]; maintainers = with maintainers; [ kylesferrazza totoroot ]; + # Very similar issue to hdfview, see: https://github.com/NixOS/nixpkgs/issues/340048 + broken = true; }; }