nixpkgs-suyu/pkgs/applications/video/smtube/default.nix

25 lines
563 B
Nix
Raw Normal View History

2015-01-10 14:44:57 +01:00
{ stdenv, fetchurl, qt4 }:
2015-01-10 14:44:57 +01:00
stdenv.mkDerivation rec {
2015-05-11 07:19:24 +02:00
name = "smtube-15.5.10";
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";
};
2015-05-11 07:19:24 +02:00
makeFlags = [
"PREFIX=$(out)"
];
2015-05-11 07:19:24 +02:00
buildInputs = [ qt4 ];
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;
};
}