2019-07-05 16:42:08 +01:00
|
|
|
{ stdenv, fetchFromGitHub, wrapQtAppsHook, phonon, phonon-backend-vlc, qtbase, qmake
|
2019-09-28 02:23:49 +01:00
|
|
|
, qtdeclarative, qttools, qtx11extras, mpv
|
2018-05-04 15:06:47 +01:00
|
|
|
|
2017-04-02 18:00:02 +01:00
|
|
|
# "Free" key generated by nckx <github@tobias.gr>. I no longer have a Google
|
|
|
|
# account. You'll need to generate (and please share :-) a new one if it breaks.
|
2015-06-01 15:17:02 +01:00
|
|
|
, withAPIKey ? "AIzaSyBtFgbln3bu1swQC-naMxMtKh384D3xJZE" }:
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "minitube";
|
2019-09-28 02:23:49 +01:00
|
|
|
version = "3.2";
|
2015-06-01 15:17:02 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-09-28 02:23:49 +01:00
|
|
|
sha256 = "0175sgqmszakqd631bni4aqjpx68h6n49zjvg23fb1yyancnkn4c";
|
2015-06-01 15:17:02 +01:00
|
|
|
rev = version;
|
|
|
|
repo = "minitube";
|
|
|
|
owner = "flaviotordini";
|
2019-09-28 02:23:49 +01:00
|
|
|
fetchSubmodules = true;
|
2015-06-01 15:17:02 +01:00
|
|
|
};
|
|
|
|
|
2019-09-28 02:23:49 +01:00
|
|
|
buildInputs = [ phonon phonon-backend-vlc qtbase qtdeclarative qttools qtx11extras mpv ];
|
2019-07-05 16:42:08 +01:00
|
|
|
nativeBuildInputs = [ wrapQtAppsHook qmake ];
|
2015-06-01 15:17:02 +01:00
|
|
|
|
2016-04-17 00:43:15 +01:00
|
|
|
qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ];
|
2015-06-01 15:17:02 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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 02:11:51 +01:00
|
|
|
homepage = "https://flavio.tordini.org/minitube";
|
2016-01-24 19:31:44 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2019-12-26 14:13:48 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2016-01-24 19:31:44 +00:00
|
|
|
};
|
2015-06-01 15:17:02 +01:00
|
|
|
}
|