Skip to content

Commit bf98022

Browse files
committed
feat: update nixpkgs to release-24.05
1 parent 5fb61a0 commit bf98022

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

flake.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "templ";
33

44
inputs = {
5-
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
5+
nixpkgs.url = "github:NixOS/nixpkgs/release-24.05";
66
gomod2nix = {
77
url = "github:nix-community/gomod2nix";
88
inputs.nixpkgs.follows = "nixpkgs";
@@ -41,7 +41,8 @@
4141
templ = buildGoApplication {
4242
name = "templ";
4343
src = gitignore.lib.gitignoreSource ./.;
44-
go = pkgs.go_1_21;
44+
# Update to latest Go version when https://nixpk.gs/pr-tracker.html?pr=324123 is backported to release-24.05.
45+
go = pkgs.go;
4546
# Must be added due to bug https://github.com/nix-community/gomod2nix/issues/120
4647
pwd = ./.;
4748
subPackages = [ "cmd/templ" ];

0 commit comments

Comments
 (0)