2020-11-05 22:52:07 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, phonon, phonon-backend-vlc, qtbase, qmake
|
2019-09-28 03:23:49 +02:00
|
|
|
, qtdeclarative, qttools, qtx11extras, mpv
|
2018-05-04 16:06:47 +02:00
|
|
|
|
2021-03-06 09:10:04 +01:00
|
|
|
# "Free" key generated by pasqui23
|
|
|
|
, withAPIKey ? "AIzaSyBQvZXseEVvgu5Ega_DI-AIJ55v0OsHmVY" }:
|
2015-06-01 16:17:02 +02:00
|
|
|
|
2020-11-05 22:52:07 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "minitube";
|
2021-03-05 23:08:23 +01:00
|
|
|
version = "3.8.1";
|
2015-06-01 16:17:02 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-03-05 23:08:23 +01:00
|
|
|
sha256 = "3lpZyPwo4NnxZJKfmCFsH4WdakV4KB5BtCr5xsleeIQ=";
|
2015-06-01 16:17:02 +02:00
|
|
|
rev = version;
|
|
|
|
repo = "minitube";
|
|
|
|
owner = "flaviotordini";
|
2019-09-28 03:23:49 +02:00
|
|
|
fetchSubmodules = true;
|
2015-06-01 16:17:02 +02:00
|
|
|
};
|
|
|
|
|
2020-11-05 22:52:07 +01:00
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
2015-06-01 16:17:02 +02:00
|
|
|
|
2021-03-09 10:49:49 +01:00
|
|
|
buildInputs = [ phonon phonon-backend-vlc qtbase qtdeclarative qtx11extras mpv ];
|
2015-06-01 16:17:02 +02:00
|
|
|
|
2021-03-09 10:49:49 +01:00
|
|
|
qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ];
|
2015-06-01 16:17:02 +02:00
|
|
|
|
2020-11-05 22:52:07 +01:00
|
|
|
meta = with lib; {
|
2016-01-24 20:31:44 +01: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 03:11:51 +02:00
|
|
|
homepage = "https://flavio.tordini.org/minitube";
|
2016-01-24 20:31:44 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2019-12-26 15:13:48 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2016-01-24 20:31:44 +01:00
|
|
|
};
|
2015-06-01 16:17:02 +02:00
|
|
|
}
|