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

28 lines
687 B
Nix
Raw Normal View History

2016-04-28 23:38:16 +02:00
{ stdenv, fetchurl, qmakeHook, qtscript, qtwebkit }:
2015-01-10 14:44:57 +01:00
stdenv.mkDerivation rec {
2016-01-29 07:59:54 +01:00
version = "16.1.0";
2015-05-30 16:38:09 +02:00
name = "smtube-${version}";
2015-05-11 07:19:24 +02:00
src = fetchurl {
2015-08-23 14:03:33 +02:00
url = "mirror://sourceforge/smtube/SMTube/${version}/${name}.tar.bz2";
2016-01-29 07:59:54 +01:00
sha256 = "1yjn7gj5pfw8835gfazk29mhcvfh1dhfjqmbqln1ajxr89imjj4r";
};
2015-05-11 07:19:24 +02:00
makeFlags = [
"PREFIX=$(out)"
];
2016-04-28 23:38:16 +02:00
dontUseQmakeConfigure = true;
buildInputs = [ qmakeHook qtscript qtwebkit ];
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;
};
}