Compare commits

...

2 Commits

Author SHA1 Message Date
d3596fc7e9 Update flakes 2024-10-15 23:18:43 +02:00
1312b29eca Remove exportloopref, no longer needed in go 1.22+ 2024-10-15 23:17:59 +02:00
3 changed files with 11 additions and 12 deletions

View File

@ -43,7 +43,6 @@ linters:
- copyloopvar
- errcheck
- errorlint
- exportloopref
- exhaustive
- gci
- gocheckcompilerdirectives

View File

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1722113426,
"narHash": "sha256-Yo/3loq572A8Su6aY5GP56knpuKYRvM2a1meP9oJZCw=",
"lastModified": 1728330715,
"narHash": "sha256-xRJ2nPOXb//u1jaBnDP56M7v5ldavjbtR6lfGqSvcKg=",
"owner": "numtide",
"repo": "devshell",
"rev": "67cce7359e4cd3c45296fb4aaf6a19e2a9c757ae",
"rev": "dd6b80932022cea34a019e2bb32f6fa9e494dfef",
"type": "github"
},
"original": {
@ -22,11 +22,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1727872001,
"narHash": "sha256-nZNSePIWw526864XBqsrWU1dbo4Ei8iJXpNHCubui28=",
"lastModified": 1728538411,
"narHash": "sha256-f0SBJz1eZ2yOuKUr5CA9BHULGXVSn6miBuUWdTyhUhU=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e46dc3b8343f627532ba881965b053d3bbec4235",
"rev": "b69de56fac8c2b6f8fd27f2eca01dcda8e0a4221",
"type": "github"
},
"original": {

View File

@ -46,11 +46,11 @@
pkgs:
pkgs.buildEnv {
name = "control4_env";
paths = [
pkgs.lua5_1
pkgs.lua51Packages.busted
pkgs.stylua
pkgs.nodejs_22
paths = with pkgs; [
lua5_1
lua51Packages.busted
stylua
nodejs_22
];
}
);