summary refs log tree commit diff
path: root/pkgs/applications/video/smtube/default.nix
blob: bc55f943a889a92acd3767bd6fbd22d25a784a4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, qtscript }:

stdenv.mkDerivation rec {
  version = "15.11.0";
  name = "smtube-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/smtube/SMTube/${version}/${name}.tar.bz2";
    sha256 = "13pkd0462ygsdlmym6y2cfivihmi175y41jq5hjyh926cgfg7pny";
  };

  makeFlags = [
    "PREFIX=$(out)"
  ];

  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;
  };
}