Add minitube

This commit is contained in:
EEva 2019-06-19 20:11:55 +03:00
parent 80c39ff049
commit 33ad155000
2 changed files with 38 additions and 0 deletions

View File

@ -34,6 +34,8 @@ self: super:
stdenv = super.overrideCC super.stdenv super.gcc6;
};
minitube = super.libsForQt5.callPackage ./minitube {};
# Originally from Mats Rauhala ®2018
copy = super.writeScriptBin "copy" ''
function clean() {

36
pkgs/minitube/default.nix Normal file
View 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 ];
};
}