Skip to content

Commit

Permalink
goreleaser: -> v1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goreleaserbot committed Sep 23, 2023
1 parent fb8b4c7 commit 8905759
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions pkgs/goreleaser/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,26 @@ system ? builtins.currentSystem
}:
let
shaMap = {
i686-linux = "0fph771h49mvbx51wp0zw12p9x0ivxh0grwbpih2lhzzy91x8yql";
x86_64-linux = "0p1r7bmcbgp2nwa131z391a7q5hvcrxjiajv1jvm1irl1qh0msv6";
armv7l-linux = "0b03yfb8alkwx3a9bfmxwz9ff06lg6q31k1vcnhc0za120pmbp1i";
aarch64-linux = "1q37cxrhlfnrckxhl3ss024p0f1hkblpin452889vbsigjvxb0s1";
x86_64-darwin = "0iy21iz1q0cs678nd57b64a0gqdmz9baps5kc1fdhlfz4y3cd4mm";
aarch64-darwin = "0k2zgscdr71969mzz7x603q7gh38lx00pfbkls9f882byi2q5h5x";
i686-linux = "16gl15n0vp8vbf8c4mxi0h6ffxhqsrmkrcdwp808zk2vzlxmjp62";
x86_64-linux = "1w8l03rfqh5k78al3c0z1inx504niisa6hlsa61g7nxsr9c3q8d7";
armv7l-linux = "11s85ydiq45g5gwa37qclydz0sf77b4d7wlralpc7j5z9bvy5n4s";
aarch64-linux = "1h3m94f3p4byi03ppmz8g9zsyk1jksz26sp7yhzcq8dxzij1pamh";
x86_64-darwin = "03q6lxxyfiyakncpf4v9ii23mf214inhnqmbkjrrjbqmgv9qvm1d";
aarch64-darwin = "12kiaqkmzvx92xa1cl5i12n33gk9xckhq828v9ckdqllnnnl59nv";
};

urlMap = {
i686-linux = "https://github.com/goreleaser/goreleaser/releases/download/v1.20.0/goreleaser_Linux_i386.tar.gz";
x86_64-linux = "https://github.com/goreleaser/goreleaser/releases/download/v1.20.0/goreleaser_Linux_x86_64.tar.gz";
armv7l-linux = "https://github.com/goreleaser/goreleaser/releases/download/v1.20.0/goreleaser_Linux_armv7.tar.gz";
aarch64-linux = "https://github.com/goreleaser/goreleaser/releases/download/v1.20.0/goreleaser_Linux_arm64.tar.gz";
x86_64-darwin = "https://github.com/goreleaser/goreleaser/releases/download/v1.20.0/goreleaser_Darwin_x86_64.tar.gz";
aarch64-darwin = "https://github.com/goreleaser/goreleaser/releases/download/v1.20.0/goreleaser_Darwin_arm64.tar.gz";
i686-linux = "https://github.com/goreleaser/goreleaser/releases/download/v1.21.0/goreleaser_Linux_i386.tar.gz";
x86_64-linux = "https://github.com/goreleaser/goreleaser/releases/download/v1.21.0/goreleaser_Linux_x86_64.tar.gz";
armv7l-linux = "https://github.com/goreleaser/goreleaser/releases/download/v1.21.0/goreleaser_Linux_armv7.tar.gz";
aarch64-linux = "https://github.com/goreleaser/goreleaser/releases/download/v1.21.0/goreleaser_Linux_arm64.tar.gz";
x86_64-darwin = "https://github.com/goreleaser/goreleaser/releases/download/v1.21.0/goreleaser_Darwin_x86_64.tar.gz";
aarch64-darwin = "https://github.com/goreleaser/goreleaser/releases/download/v1.21.0/goreleaser_Darwin_arm64.tar.gz";
};
in
pkgs.stdenv.mkDerivation {
pname = "goreleaser";
version = "1.20.0";
version = "1.21.0";
src = fetchurl {
url = urlMap.${system};
sha256 = shaMap.${system};
Expand Down

0 comments on commit 8905759

Please sign in to comment.