qrcp: mark broken on darwin

This commit is contained in:
Sandro Jäckel 2022-11-23 23:20:44 +01:00
parent af5c172fab
commit 63fa4df63c
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, buildGoModule , buildGoModule
, fetchFromGitHub , fetchFromGitHub
, installShellFiles , installShellFiles
@ -41,5 +42,6 @@ buildGoModule rec {
''; '';
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fgaz SuperSandro2000 ]; maintainers = with maintainers; [ fgaz SuperSandro2000 ];
broken = stdenv.isDarwin; # needs golang.org/x/sys bump
}; };
} }