2024-06-16 19:39:29 +00:00
|
|
|
{
|
|
|
|
aria2,
|
|
|
|
cmake,
|
2024-06-16 20:20:49 +00:00
|
|
|
# https://github.com/mhogomchungu/media-downloader?tab=readme-ov-file#extensions
|
|
|
|
extraPackages ? [
|
|
|
|
aria2
|
|
|
|
ffmpeg
|
|
|
|
python3
|
|
|
|
],
|
2024-06-16 19:39:29 +00:00
|
|
|
fetchFromGitHub,
|
|
|
|
ffmpeg,
|
|
|
|
lib,
|
|
|
|
libsForQt5,
|
|
|
|
python3,
|
|
|
|
stdenv,
|
2022-07-02 00:44:12 +00:00
|
|
|
}:
|
|
|
|
|
2023-08-11 20:33:51 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2022-07-02 00:44:12 +00:00
|
|
|
pname = "media-downloader";
|
2024-08-24 08:43:45 +00:00
|
|
|
version = "5.0.1";
|
2022-07-02 00:44:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mhogomchungu";
|
2023-08-11 20:33:51 +00:00
|
|
|
repo = "media-downloader";
|
|
|
|
rev = finalAttrs.version;
|
2024-08-24 08:43:45 +00:00
|
|
|
hash = "sha256-yAG9F9helGM8/TjJiqMDUviHK6uEUvHGny2QklwB2JY=";
|
2022-07-02 00:44:12 +00:00
|
|
|
};
|
|
|
|
|
2023-04-05 03:15:46 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2024-06-16 19:38:59 +00:00
|
|
|
libsForQt5.wrapQtAppsHook
|
2023-04-05 03:15:46 +00:00
|
|
|
];
|
|
|
|
|
2024-06-16 19:39:29 +00:00
|
|
|
buildInputs = [ libsForQt5.qtbase ];
|
2022-07-02 00:44:12 +00:00
|
|
|
|
2024-06-16 20:20:49 +00:00
|
|
|
qtWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath extraPackages}" ];
|
2022-07-02 00:44:12 +00:00
|
|
|
|
2023-08-11 20:33:51 +00:00
|
|
|
meta = {
|
2023-10-04 06:26:54 +00:00
|
|
|
description = "Qt/C++ GUI front end for yt-dlp and others";
|
2024-06-16 20:20:49 +00:00
|
|
|
longDescription = ''
|
|
|
|
Media Downloader is a GUI front end to yt-dlp, youtube-dl, gallery-dl,
|
|
|
|
lux, you-get, svtplay-dl, aria2c, wget and safari books.
|
|
|
|
|
|
|
|
Read https://github.com/mhogomchungu/media-downloader/wiki/Extensions
|
2024-07-05 06:18:27 +00:00
|
|
|
for further information. Note that adding these packages to extraPackages
|
|
|
|
doesn't work, because the author doesn't intend to support custom
|
|
|
|
installation of them. These packages will be downloaded from original
|
|
|
|
source when executing the application for the first time.
|
2024-06-16 20:20:49 +00:00
|
|
|
'';
|
2022-07-02 00:44:12 +00:00
|
|
|
homepage = "https://github.com/mhogomchungu/media-downloader";
|
2023-08-11 20:33:51 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2024-06-16 20:30:50 +00:00
|
|
|
maintainers = with lib.maintainers; [
|
|
|
|
zendo
|
|
|
|
aleksana
|
|
|
|
];
|
2023-08-11 20:33:51 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "media-downloader";
|
2022-07-02 00:44:12 +00:00
|
|
|
};
|
2023-08-11 20:33:51 +00:00
|
|
|
})
|