38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ mkDerivation, lib, fetchFromGitHub, phonon, phonon-backend-vlc, qtbase, qmake
|
|
, qtdeclarative, qttools, qtx11extras, mpv
|
|
|
|
# "Free" key generated by pasqui23
|
|
, withAPIKey ? "AIzaSyBQvZXseEVvgu5Ega_DI-AIJ55v0OsHmVY" }:
|
|
|
|
mkDerivation rec {
|
|
pname = "minitube";
|
|
version = "3.9.2";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "sha256-MIzfo17eAvpWO2HNq9z+D9XiOKTRiUHvaOdxI1EK1f0=";
|
|
rev = version;
|
|
repo = "minitube";
|
|
owner = "flaviotordini";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
|
|
|
buildInputs = [ phonon phonon-backend-vlc qtbase qtdeclarative qtx11extras mpv ];
|
|
|
|
qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ];
|
|
|
|
meta = with 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.
|
|
'';
|
|
homepage = "https://flavio.tordini.org/minitube";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|