get_iplayer: remove irrelevant warning

+6 -1
+6 -1
pkgs/applications/misc/get_iplayer/default.nix
··· 8 8 preConfigure = "touch Makefile.PL"; 9 9 doCheck = false; 10 10 11 + patchPhase = '' 12 + sed -e 's|^update_script|#update_script|' \ 13 + -e '/WARNING.*updater/d' \ 14 + -i get_iplayer 15 + ''; 16 + 11 17 installPhase = '' 12 18 mkdir -p $out/bin 13 19 cp get_iplayer $out/bin 14 - sed -i 's|^update_script|#update_script|' $out/bin/get_iplayer 15 20 wrapProgram $out/bin/get_iplayer --suffix PATH : ${ffmpeg}/bin:${flvstreamer}/bin:${vlc}/bin:${rtmpdump}/bin --prefix PERL5LIB : $PERL5LIB 16 21 ''; 17 22