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 - copyloopvar
- errcheck - errcheck
- errorlint - errorlint
- exportloopref
- exhaustive - exhaustive
- gci - gci
- gocheckcompilerdirectives - gocheckcompilerdirectives

View File

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

View File

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