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; {
|
meta = with lib; {
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
description = "Fast linters Runner for Go";
|
description = "Fast linters Runner for Go";
|
||||||
homepage = "https://golangci-lint.run/";
|
homepage = "https://golangci-lint.run/";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ anpryl manveru mic92 ];
|
maintainers = with maintainers; [ anpryl manveru mic92 ];
|
||||||
|
broken = stdenv.isDarwin && stdenv.isx86_64;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue