summary refs log tree commit diff
path: root/pkgs/applications/video/quvi/library.nix
blob: 49207ad066158eddf69ade692b465140d72dfc75 (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}:

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

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

  buildInputs = [ pkgconfig lua5 curl quvi_scripts ];

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