Merge pull request #177069 from malob/fix-golangci-lint
golangci-lint: only mark broken for x86_64 on darwin
This commit is contained in:
commit
8b78e69b76
1 changed files with 1 additions and 1 deletions
|
@ -31,10 +31,10 @@ buildGoModule rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Fast linters Runner for Go";
|
||||
homepage = "https://golangci-lint.run/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ anpryl manveru mic92 ];
|
||||
broken = stdenv.isDarwin && stdenv.isx86_64;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue