2022-11-19T11:30:11 media-downloader 2.6.0 -> 2.7.0 https://github.com/mhogomchungu/media-downloader/releases 2022-11-19T11:30:13 attrpath: media-downloader 2022-11-19T11:30:13 Checking auto update branch... 2022-11-19T11:30:13 No auto update branch exists 2022-11-19T11:30:14 Old version 2.6.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , qt5 , ffmpeg-full , aria2 , yt-dlp , python3 }: stdenv.mkDerivation rec { pname = "media-downloader"; version = "2.7.0"; src = fetchFromGitHub { owner = "mhogomchungu"; repo = pname; rev = "${version}"; sha256 = "sha256-uu/4S7cVWHOhBq52NF0AargE0nbPwjF0txSWL0DquQo="; }; nativeBuildInputs = [ cmake qt5.wrapQtAppsHook ]; preFixup = '' qtWrapperArgs+=( --prefix PATH : "${lib.makeBinPath [ ffmpeg-full aria2 yt-dlp python3 ]}" ) ''; meta = with lib; { description = "A Qt/C++ GUI front end to youtube-dl"; homepage = "https://github.com/mhogomchungu/media-downloader"; license = licenses.gpl2Plus; broken = stdenv.isDarwin; platforms = platforms.unix; maintainers = with maintainers; [ zendo ]; }; }