From 05dee02f92e50112ed1b59e0ad88c158d9cdcf52 Mon Sep 17 00:00:00 2001 From: Rick van Schijndel Date: Sun, 15 May 2022 23:04:43 +0200 Subject: [PATCH] nomacs: mark broken on darwin Already broken for a few years and nobody complained yet, so just gonna make it clear that it's broken. --- pkgs/applications/graphics/nomacs/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/nomacs/default.nix b/pkgs/applications/graphics/nomacs/default.nix index 29b049ac55b..7c909de9f84 100644 --- a/pkgs/applications/graphics/nomacs/default.nix +++ b/pkgs/applications/graphics/nomacs/default.nix @@ -1,4 +1,5 @@ -{ lib +{ stdenv +, lib , mkDerivation , fetchFromGitHub , fetchpatch @@ -67,5 +68,7 @@ mkDerivation rec { maintainers = with lib.maintainers; [ mindavi ]; license = licenses.gpl3Plus; inherit (qtbase.meta) platforms; + # Broken on hydra since 2020-08-15: https://hydra.nixos.org/build/125495291 (bump from 3.16 to 3.17 prerelease) + broken = stdenv.isDarwin; }; }