File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed
Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 11{
2- description = "A dev shell with a custom-fetched Go 1.25.3 " ;
2+ description = "A dev shell with a custom-fetched Go 1.25.5 " ;
33
44 inputs = {
55 nixpkgs . url = "github:NixOS/nixpkgs/nixpkgs-unstable" ;
1111 let
1212 pkgs = nixpkgs . legacyPackages . ${ system } ;
1313
14- goVersion = "1.25.3 " ;
14+ goVersion = "1.25.5 " ;
1515
1616 go-src =
1717 if pkgs . stdenv . isLinux && pkgs . stdenv . hostPlatform . system == "x86_64-linux" then {
1818 url = "https://go.dev/dl/go${ goVersion } .linux-amd64.tar.gz" ;
19- sha256 = "sha256-AzXzFLbnv+CMPQz6p8GduWG3uZ+yC+YrCoJsmSrRTg8 =" ;
19+ sha256 = "sha256-npt1XWOzas8wwSqaP8N5JDcUwcbT3XKGHaY38zbrs1s =" ;
2020 }
2121 else if pkgs . stdenv . isDarwin && pkgs . stdenv . hostPlatform . system == "aarch64-darwin" then {
2222 url = "https://go.dev/dl/go${ goVersion } .darwin-arm64.tar.gz" ;
23- sha256 = "sha256-fAg+PSwA3r/rL3fZpMAKGqyXETuJuczEKpBIevNDc4I =" ;
23+ sha256 = "sha256-vtjr6CTj07J+hHHRMH+AP8arjh0Ot6SuGWl5vZuAHdM =" ;
2424 }
2525 else throw "This flake does not support system: ${ pkgs . stdenv . hostPlatform . system } " ;
2626
27- go_1_25_3 = pkgs . stdenv . mkDerivation {
27+ go_1_25_ako = pkgs . stdenv . mkDerivation {
2828 pname = "go-custom" ;
2929 version = goVersion ;
3030
4242
4343 in
4444 {
45- packages . go_1_25_3 = go_1_25_3 ;
46- packages . default = go_1_25_3 ;
45+ packages . go_1_25 = go_1_25_ako ;
46+ packages . default = go_1_25_ako ;
4747
4848 devShells . default = pkgs . mkShell {
4949 packages = [
50- go_1_25_3
50+ go_1_25_ako
5151 ] ;
5252 } ;
5353 }
Original file line number Diff line number Diff line change 11module github.com/mongodb/mongodb-atlas-kubernetes/v2
22
3- go 1.25.3
3+ go 1.25.5
44
55require (
66 cloud.google.com/go/kms v1.23.2
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/mongodb/mongodb-atlas-kubernetes/tools/openapi2crd
22
33go 1.25
44
5- toolchain go1.25.3
5+ toolchain go1.25.5
66
77tool (
88 github.com/daixiang0/gci
Original file line number Diff line number Diff line change 11module toolbox
22
3- go 1.25.3
3+ go 1.25.5
44
55tool (
66 fybrik.io/crdoc
You can’t perform that action at this time.
0 commit comments