Compare commits

..

No commits in common. "d3596fc7e933c171a284771f7f72342d33ad6508" and "d7502b7e08adc8cc4c1b62fcdf73ad6c73c150af" have entirely different histories.

3 changed files with 12 additions and 11 deletions

View File

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

View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1728330715, "lastModified": 1722113426,
"narHash": "sha256-xRJ2nPOXb//u1jaBnDP56M7v5ldavjbtR6lfGqSvcKg=", "narHash": "sha256-Yo/3loq572A8Su6aY5GP56knpuKYRvM2a1meP9oJZCw=",
"owner": "numtide", "owner": "numtide",
"repo": "devshell", "repo": "devshell",
"rev": "dd6b80932022cea34a019e2bb32f6fa9e494dfef", "rev": "67cce7359e4cd3c45296fb4aaf6a19e2a9c757ae",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1728538411, "lastModified": 1727872001,
"narHash": "sha256-f0SBJz1eZ2yOuKUr5CA9BHULGXVSn6miBuUWdTyhUhU=", "narHash": "sha256-nZNSePIWw526864XBqsrWU1dbo4Ei8iJXpNHCubui28=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b69de56fac8c2b6f8fd27f2eca01dcda8e0a4221", "rev": "e46dc3b8343f627532ba881965b053d3bbec4235",
"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 = with pkgs; [ paths = [
lua5_1 pkgs.lua5_1
lua51Packages.busted pkgs.lua51Packages.busted
stylua pkgs.stylua
nodejs_22 pkgs.nodejs_22
]; ];
} }
); );