parent
651e83ac10
commit
cae833255f
43
pkgs/applications/video/minitube/default.nix
Normal file
43
pkgs/applications/video/minitube/default.nix
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, makeWrapper, phonon, phonon_backend_vlc, qt4
|
||||||
|
# "Free" API key generated by nckx <tobias.geerinckx.rice@gmail.com>
|
||||||
|
, withAPIKey ? "AIzaSyBtFgbln3bu1swQC-naMxMtKh384D3xJZE" }:
|
||||||
|
|
||||||
|
let version = "2.4"; in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "minitube-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
sha256 = "0mm8v2vpspwxh2fqaykb381v6r9apywc1b0x8jkcbp7s43w10lp5";
|
||||||
|
rev = version;
|
||||||
|
repo = "minitube";
|
||||||
|
owner = "flaviotordini";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
inherit version;
|
||||||
|
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 = http://flavio.tordini.org/minitube;
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
maintainers = with maintainers; [ nckx ];
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ phonon phonon_backend_vlc qt4 ];
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
configurePhase = ''
|
||||||
|
qmake PREFIX=$out "DEFINES += APP_GOOGLE_API_KEY=${withAPIKey}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/minitube \
|
||||||
|
--prefix QT_PLUGIN_PATH : "${phonon_backend_vlc}/lib/kde4/plugins"
|
||||||
|
'';
|
||||||
|
}
|
@ -11732,6 +11732,8 @@ let
|
|||||||
|
|
||||||
minidjvu = callPackage ../applications/graphics/minidjvu { };
|
minidjvu = callPackage ../applications/graphics/minidjvu { };
|
||||||
|
|
||||||
|
minitube = callPackage ../applications/video/minitube { };
|
||||||
|
|
||||||
mimms = callPackage ../applications/audio/mimms {};
|
mimms = callPackage ../applications/audio/mimms {};
|
||||||
|
|
||||||
mirage = callPackage ../applications/graphics/mirage {};
|
mirage = callPackage ../applications/graphics/mirage {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user