From 5cf446f41b400d9a209144b385460766778b787a Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Mon, 16 May 2022 15:59:16 -0400 Subject: [PATCH] ezminc: mark broken Package refuses to build with current GCC (11), but building with older GCC causes error linking libminc and I don't want to pin a bunch of deps. A newer version is available upstream but it only works with ITK 5.0 (see https://github.com/BIC-MNI/EZminc/issues/15), but we have 4.x and 5.2.x in tree and I'm reluctant to add 5.0 just for one package (even ITK 4.x is only used by ants and ezminc and should be removed as soon as ants is upgraded). --- pkgs/applications/science/biology/EZminc/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/science/biology/EZminc/default.nix b/pkgs/applications/science/biology/EZminc/default.nix index a2ba038c059..6c140b03ee4 100644 --- a/pkgs/applications/science/biology/EZminc/default.nix +++ b/pkgs/applications/science/biology/EZminc/default.nix @@ -25,5 +25,6 @@ stdenv.mkDerivation rec { maintainers = with maintainers; [ bcdarwin ]; platforms = platforms.unix; license = licenses.free; + broken = true; # ITK5 compatibility issue (https://github.com/BIC-MNI/EZminc/issues/15) }; }