Skip to content

Commit ee7903f

Browse files
committed
chore(flake.nix): fix shellcheck issues with luarocks installation code
1 parent 25b04f1 commit ee7903f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flake.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@
5050
nativeBuildInputs = with pkgs; [lua51Packages.luarocks wget];
5151
outputHashAlgo = "sha256";
5252
outputHashMode = "recursive";
53-
outputHash = "sha256-dCr4RGzmOavixuO5kUg8SAwmi3bh1WX5cd0Nl+Vj26g=";
53+
outputHash = "sha256-SOsIgtmkXTKMZrKUHHzAf+XAshl/J7+DN9RFeLz+DDY=";
5454
} ''
5555
mkdir $PWD/home
5656
export HOME=$PWD/home
5757
mkdir -p $out/luarocks
5858
59-
${lib.concatStrings (lib.mapAttrsToList (name: version: "luarocks install --tree='$out/luarocks' --force-lock --local ${name} ${version}\n") dependencies)}
59+
${lib.concatStrings (lib.mapAttrsToList (name: version: ''luarocks install --tree="$out/luarocks" --force-lock --local ${name} ${version}'' + "\n") dependencies)}
6060
'';
6161
luarc = pkgs.mk-luarc {};
6262
luarc-with-dependencies =

0 commit comments

Comments
 (0)