1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-07 15:00:12 +02:00

fix(nix): do not install go on macos

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2024-07-23 19:30:44 -04:00
parent 42d614dd62
commit bab28ebf88
No known key found for this signature in database

@ -22,7 +22,6 @@
devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [
go_1_22
go-task
gofumpt
syft
@ -31,6 +30,7 @@
gnupg
nix-prefetch
] ++ (lib.optionals pkgs.stdenv.isLinux [
go_1_22
snapcraft
]);