matrix-appservice-discord: unquote ${nodejs.src}

This brings it in line with every other instance of nodejs sources being unpacked like this (see `rg 'tar --no-same-owner --no-same-permissions'`). The extracted node-sources is identical in both cases, however due to this difference in the derivation code, two store paths are produced. At a size of roughly 300MB, that's not exactly negligible.
This commit is contained in:
Max 2022-05-27 16:29:43 +02:00 committed by GitHub
parent 8592de40bd
commit 70ac5aea7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ assert lib.versionAtLeast nodejs.version "12.0.0";
let
nodeSources = runCommand "node-sources" {} ''
tar --no-same-owner --no-same-permissions -xf "${nodejs.src}"
tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
mv node-* $out
'';