guglielmo: fix use of rtl-sdr

This commit is contained in:
Nick Cao
2025-08-27 20:47:12 -04:00
committed by Michael Daniels
parent 76ab86dbf9
commit d43cbc728d
+6 -1
View File
@@ -50,7 +50,12 @@ stdenv.mkDerivation (finalAttrs: {
postFixup = ''
# guglielmo opens SDR libraries at run time
patchelf --add-rpath "${airspy}/lib:${rtl-sdr}/lib" $out/bin/.guglielmo-wrapped
patchelf --add-rpath "${
lib.makeLibraryPath [
airspy
rtl-sdr
]
}" $out/bin/.guglielmo-wrapped
'';
meta = {