Merge pull request #173194 from Mindavi/nomacs/darwin

nomacs: mark broken on darwin
This commit is contained in:
Sandro 2022-05-16 01:29:05 +02:00 committed by GitHub
commit aaf0d5d436
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};
}