2015-01-10 14:44:57 +01:00
|
|
|
{ stdenv, fetchurl, qt4 }:
|
2014-10-11 11:41:14 +02:00
|
|
|
|
2015-01-10 14:44:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-11 07:19:24 +02:00
|
|
|
name = "smtube-15.5.10";
|
|
|
|
|
2014-10-11 11:41:14 +02:00
|
|
|
src = fetchurl {
|
2015-01-10 14:44:57 +01:00
|
|
|
url = "mirror://sourceforge/smplayer/${name}.tar.bz2";
|
2015-05-11 07:19:24 +02:00
|
|
|
sha256 = "1if2b0h6snfmj5hnx4cs55zjbdvwagx95jv62f2jgh3m5gis0cbz";
|
2014-10-11 11:41:14 +02:00
|
|
|
};
|
|
|
|
|
2015-05-11 07:19:24 +02:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
2014-10-11 11:41:14 +02:00
|
|
|
|
2015-05-11 07:19:24 +02:00
|
|
|
buildInputs = [ qt4 ];
|
2014-10-11 11:41:14 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|