overlays-personal/pkgs/minitube/default.nix
2019-06-19 20:11:55 +03:00

37 lines
1.2 KiB
Nix

{ stdenv, fetchgit, makeWrapper, qtbase, qmake
, qtdeclarative, qttools, qtx11extras, mpv, linuxHeaders
, withAPIKey ? "AIzaSyAHj2NywPI-GhV_yMgCDjE7XFGAnPrJDGM" }:
stdenv.mkDerivation rec {
name = "minitube-${version}";
version = "3.1";
# Have to use fetchgit to import submodules :(
src = fetchgit {
url = "https://github.com/flaviotordini/minitube.git";
rev = "refs/tags/${version}";
deepClone = true;
sha256 = "0lr2i6g5l7bpy794kwn58i2hngby4n36yfwxalbg43h4am1q62dy";
};
buildInputs = [ qtbase qtdeclarative qttools qtx11extras mpv linuxHeaders ];
nativeBuildInputs = [ makeWrapper qmake ];
qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ];
enableParallelBuilding = true;
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.
'';
homepage = https://flavio.tordini.org/minitube;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ jpotier ];
};
}