Add minitube
This commit is contained in:
parent
80c39ff049
commit
33ad155000
2 changed files with 38 additions and 0 deletions
|
@ -34,6 +34,8 @@ self: super:
|
||||||
stdenv = super.overrideCC super.stdenv super.gcc6;
|
stdenv = super.overrideCC super.stdenv super.gcc6;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
minitube = super.libsForQt5.callPackage ./minitube {};
|
||||||
|
|
||||||
# Originally from Mats Rauhala ®2018
|
# Originally from Mats Rauhala ®2018
|
||||||
copy = super.writeScriptBin "copy" ''
|
copy = super.writeScriptBin "copy" ''
|
||||||
function clean() {
|
function clean() {
|
||||||
|
|
36
pkgs/minitube/default.nix
Normal file
36
pkgs/minitube/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue