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

28 lines
682 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-30 16:38:09 +02:00
versionMajor = "15.5";
versionMinor = "17";
version = "${versionMajor}.${versionMinor}";
name = "smtube-${version}";
2015-05-11 07:19:24 +02:00
src = fetchurl {
2015-05-30 16:38:09 +02:00
url = "mirror://sourceforge/smtube/SMTube/${versionMajor}/${name}.tar.bz2";
sha256 = "0jbik41nb1b7381ybzblmmsl8b7ljl6a2zpn1dcg0cccjw5mnbyg";
};
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;
};
}