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

26 lines
615 B
Nix
Raw Normal View History

2015-12-20 14:40:29 +01:00
{ stdenv, fetchurl, qtscript }:
2015-01-10 14:44:57 +01:00
stdenv.mkDerivation rec {
2015-12-02 19:46:04 +01:00
version = "15.11.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";
2015-12-02 19:46:04 +01:00
sha256 = "13pkd0462ygsdlmym6y2cfivihmi175y41jq5hjyh926cgfg7pny";
};
2015-05-11 07:19:24 +02:00
makeFlags = [
"PREFIX=$(out)"
];
2015-12-20 14:40:29 +01:00
buildInputs = [ qtscript ];
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;
};
}