summary refs log tree commit diff
path: root/pkgs/applications/video/quvi/tool.nix
blob: f8b6aad43106fe5bf10414969d2339181a100744 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl, pkgconfig, lua5, curl, quvi_scripts, libquvi}:

stdenv.mkDerivation rec {
  name = "quvi-${version}";
  version="0.4.0";

  src = fetchurl {
    url = "mirror://sourceforge/quvi/quvi-${version}.tar.gz";
    sha256 = "0qzyj55py4z7pg97794jjycq8nvrlr02072rgjzg8jgknw49hgfv";
  };

  buildInputs = [ pkgconfig lua5 curl quvi_scripts libquvi ];

  meta = { 
    description = "Web video downloader";
    homepage = http://quvi.sf.net;
    license = "LGPLv2.1+";
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.mornfall ]; 
  };
}