Skip to content

Commit 73b1ede

Browse files
committed
chore: update nix flake
1 parent 05533af commit 73b1ede

2 files changed

Lines changed: 5 additions & 13 deletions

File tree

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,14 @@
1313
config.allowUnfree = true;
1414
};
1515

16-
go = pkgs.go_1_23;
17-
withOurGoVersion = pkg: pkg.override { buildGoModule = pkgs.buildGo123Module; };
16+
go = pkgs.go_1_24;
17+
withOurGoVersion = pkg: pkg.override { buildGoModule = pkgs.buildGo124Module; };
1818

1919
gopls = withOurGoVersion pkgs.gopls;
2020
delve = withOurGoVersion pkgs.delve;
2121
in
2222
{
2323
devShells.default = with pkgs; mkShell {
24-
nativeBuildInputs = [
25-
go
26-
buf
27-
];
28-
2924
packages = [
3025
go
3126
buf
@@ -48,9 +43,6 @@
4843
GO_BIN_PATH = "${go}/bin/go";
4944
GOPLS_PATH = "${gopls}/bin/gopls";
5045
DLV_PATH = "${delve}/bin/dlv";
51-
52-
# Disable ryuk container for testcontainers.
53-
TESTCONTAINERS_RYUK_DISABLED = "true";
5446
};
5547
}
5648
);

0 commit comments

Comments
 (0)