media-downloader 2.7.0 -> 2.8.0 https://repology.org/metapackage/media-downloader/versions attrpath: media-downloader Checking auto update branch... No auto update branch exists Old version 2.7.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.8.0"; src = fetchFromGitHub { owner = "mhogomchungu"; repo = pname; rev = "${version}"; sha256 = "sha256-RMZG+rPbwJFL2AzEZlTrc8/bQCx8CWCWppEBjCj5hnU="; }; 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 ]; }; }