summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/minitube
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-06-01 16:17:02 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-06-09 20:05:23 +0200
commitcae833255f6e1d95fed6fb162764aba81cb7b84e (patch)
tree33d700c4eafeaed0b0f19caed58ce222db24069f /pkgs/applications/video/minitube
parent651e83ac1049e16e8311be3796a315d907e740cf (diff)
add minitube: stand-alone Youtube video player
Close #8118.
Diffstat (limited to 'pkgs/applications/video/minitube')
-rw-r--r--pkgs/applications/video/minitube/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/applications/video/minitube/default.nix b/pkgs/applications/video/minitube/default.nix
new file mode 100644
index 000000000000..b9c4de0811de
--- /dev/null
+++ b/pkgs/applications/video/minitube/default.nix
@@ -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"
+ '';
+}