Unverified Commit d43cbc72 authored by Nick Cao's avatar Nick Cao Committed by Michael Daniels
Browse files

guglielmo: fix use of rtl-sdr

parent 76ab86db
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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 = {