We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74b870 commit 32ee560Copy full SHA for 32ee560
flake.lock
flake.nix
@@ -2,7 +2,7 @@
2
description = "templ";
3
4
inputs = {
5
- nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
6
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
7
gitignore = {
8
url = "github:hercules-ci/gitignore.nix";
@@ -37,12 +37,14 @@
37
rec {
38
default = templ;
39
40
- templ = pkgs.buildGo123Module {
+ templ = pkgs.buildGo124Module {
41
name = "templ";
42
subPackages = [ "cmd/templ" ];
43
src = gitignore.lib.gitignoreSource ./.;
44
vendorHash = "sha256-q4L+r6S0eMNd5hP9UQCI+GxSJoiMGpjd0UTxA8zb6KU=";
45
- CGO_ENABLED = 0;
+ env = {
46
+ CGO_ENABLED = 0;
47
+ };
48
flags = [
49
"-trimpath"
50
];
0 commit comments