We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05533af commit 73b1edeCopy full SHA for 73b1ede
2 files changed
flake.lock
flake.nix
@@ -13,19 +13,14 @@
13
config.allowUnfree = true;
14
};
15
16
- go = pkgs.go_1_23;
17
- withOurGoVersion = pkg: pkg.override { buildGoModule = pkgs.buildGo123Module; };
+ go = pkgs.go_1_24;
+ withOurGoVersion = pkg: pkg.override { buildGoModule = pkgs.buildGo124Module; };
18
19
gopls = withOurGoVersion pkgs.gopls;
20
delve = withOurGoVersion pkgs.delve;
21
in
22
{
23
devShells.default = with pkgs; mkShell {
24
- nativeBuildInputs = [
25
- go
26
- buf
27
- ];
28
-
29
packages = [
30
go
31
buf
@@ -48,9 +43,6 @@
48
43
GO_BIN_PATH = "${go}/bin/go";
49
44
GOPLS_PATH = "${gopls}/bin/gopls";
50
45
DLV_PATH = "${delve}/bin/dlv";
51
52
- # Disable ryuk container for testcontainers.
53
- TESTCONTAINERS_RYUK_DISABLED = "true";
54
46
55
47
}
56
);
0 commit comments