mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
smtube: new package
SMTube allows to search, play and download Youtube videos. Homepage: http://smplayer.sourceforge.net/smtube.php
This commit is contained in:
parent
826572a9e3
commit
8280d6522e
23
pkgs/applications/video/smtube/default.nix
Normal file
23
pkgs/applications/video/smtube/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{stdenv, fetchurl, qt4}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "smtube-14.8.0";
|
||||||
|
src = fetchurl {
|
||||||
|
url = mirror://sourceforge/smplayer/smtube-14.8.0.tar.bz2;
|
||||||
|
sha256 = "0h0kw4dvdj9sbxp0p6bdib9y8i7854f45lsmrdkykzk6rmgrf1cw";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [qt4];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
makeFlags="PREFIX=$out"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Play and download Youtube videos";
|
||||||
|
homepage = http://smplayer.sourceforge.net/smtube.php;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ vbgl ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -9866,6 +9866,8 @@ let
|
||||||
|
|
||||||
smplayer = callPackage ../applications/video/smplayer { };
|
smplayer = callPackage ../applications/video/smplayer { };
|
||||||
|
|
||||||
|
smtube = callPackage ../applications/video/smtube {};
|
||||||
|
|
||||||
sup = with rubyLibs; callPackage ../applications/networking/mailreaders/sup {
|
sup = with rubyLibs; callPackage ../applications/networking/mailreaders/sup {
|
||||||
ruby = ruby_1_9_3.override {
|
ruby = ruby_1_9_3.override {
|
||||||
cursesSupport = true;
|
cursesSupport = true;
|
||||||
|
|
Loading…
Reference in a new issue