Merge pull request #248488 from r-ryantm/auto-update/media-downloader

media-downloader: 3.2.1 -> 3.3.0
This commit is contained in:
Pol Dellaiera 2023-08-12 05:55:23 +02:00 committed by GitHub
commit 32d9157e1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,24 +1,24 @@
{ lib { aria2
, stdenv
, fetchFromGitHub
, cmake , cmake
, wrapQtAppsHook , fetchFromGitHub
, qtbase
, aria2
, ffmpeg , ffmpeg
, lib
, python3 , python3
, qtbase
, stdenv
, wrapQtAppsHook
, yt-dlp , yt-dlp
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "media-downloader"; pname = "media-downloader";
version = "3.2.1"; version = "3.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mhogomchungu"; owner = "mhogomchungu";
repo = pname; repo = "media-downloader";
rev = version; rev = finalAttrs.version;
hash = "sha256-+wLVF0UKspVll+dYZGSk5dUbPBc/2Y0cqTuaeepxw+k="; hash = "sha256-UmNaosunkNUTm4rsf4q29H+0cJAccUDx+ulcS2octIo=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -39,11 +39,11 @@ stdenv.mkDerivation rec {
]}" ]}"
]; ];
meta = with lib; { meta = {
description = "A Qt/C++ GUI front end to youtube-dl"; description = "A Qt/C++ GUI front end to youtube-dl";
homepage = "https://github.com/mhogomchungu/media-downloader"; homepage = "https://github.com/mhogomchungu/media-downloader";
license = licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
platforms = platforms.linux; maintainers = with lib.maintainers; [ zendo ];
maintainers = with maintainers; [ zendo ]; platforms = lib.platforms.linux;
}; };
} })