soapysdr: fix wrapper arguments escaping

main
Naïm Favier 2 years ago
parent 5f3016cde8
commit 6d230e4e0a
No known key found for this signature in database
GPG Key ID: 49B07322580B7EE2
  1. 2
      pkgs/applications/radio/soapysdr/default.nix

@ -42,7 +42,7 @@ in stdenv.mkDerivation {
done
# Needed for at least the remote plugin server
for file in $out/bin/*; do
wrapProgram "$file" --prefix SOAPY_SDR_PLUGIN_PATH : ${extraPackagesSearchPath}
wrapProgram "$file" --prefix SOAPY_SDR_PLUGIN_PATH : ${lib.escapeShellArg extraPackagesSearchPath}
done
'';

Loading…
Cancel
Save