2024-05-21 01:03:37 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, phonon, phonon-backend-vlc, qtbase, qmake
|
2019-09-28 01:23:49 +00:00
|
|
|
, qtdeclarative, qttools, qtx11extras, mpv
|
2018-05-04 14:06:47 +00:00
|
|
|
|
2021-03-06 08:10:04 +00:00
|
|
|
# "Free" key generated by pasqui23
|
|
|
|
, withAPIKey ? "AIzaSyBQvZXseEVvgu5Ega_DI-AIJ55v0OsHmVY" }:
|
2015-06-01 14:17:02 +00:00
|
|
|
|
2020-11-05 21:52:07 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "minitube";
|
2022-02-12 16:19:27 +00:00
|
|
|
version = "3.9.3";
|
2015-06-01 14:17:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2024-07-14 10:59:26 +00:00
|
|
|
hash = "sha256-ROqROQsV8ddrxYT5mMdkf6rCgCoGr1jpxQ1ohcoEaQs=";
|
2015-06-01 14:17:02 +00:00
|
|
|
rev = version;
|
|
|
|
repo = "minitube";
|
|
|
|
owner = "flaviotordini";
|
2019-09-28 01:23:49 +00:00
|
|
|
fetchSubmodules = true;
|
2015-06-01 14:17:02 +00:00
|
|
|
};
|
|
|
|
|
2022-11-23 21:35:56 +00:00
|
|
|
patches = [
|
|
|
|
# Taken from FreeBSD; already merged upstream in the media submodule
|
|
|
|
# (https://github.com/flaviotordini/media/commit/f6b7020f273e1fc06e6e204fab37a7c8edaa857a)
|
|
|
|
./lib_media_src_mpv_mpvwidget.patch
|
|
|
|
];
|
|
|
|
|
2020-11-05 21:52:07 +00:00
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
2015-06-01 14:17:02 +00:00
|
|
|
|
2021-03-09 09:49:49 +00:00
|
|
|
buildInputs = [ phonon phonon-backend-vlc qtbase qtdeclarative qtx11extras mpv ];
|
2015-06-01 14:17:02 +00:00
|
|
|
|
2021-03-09 09:49:49 +00:00
|
|
|
qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ];
|
2015-06-01 14:17:02 +00:00
|
|
|
|
2020-11-05 21:52:07 +00:00
|
|
|
meta = with lib; {
|
2016-01-24 19:31:44 +00:00
|
|
|
description = "Stand-alone YouTube video player";
|
|
|
|
longDescription = ''
|
|
|
|
Watch YouTube videos in a new way: you type a keyword, Minitube gives
|
|
|
|
you an endless video stream. Minitube is not about cloning the YouTube
|
|
|
|
website, it aims to create a new TV-like experience.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://flavio.tordini.org/minitube";
|
2016-01-24 19:31:44 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2024-07-28 14:44:11 +00:00
|
|
|
maintainers = [ ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "minitube";
|
2016-01-24 19:31:44 +00:00
|
|
|
};
|
2015-06-01 14:17:02 +00:00
|
|
|
}
|