about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/quvi/scripts.nix
blob: 676d073900c52478380b60aadfc4633e71a9d6e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{lib, stdenv, fetchurl, pkg-config}:

stdenv.mkDerivation rec {
  pname = "quvi-scripts";
  version="0.9.20131130";

  src = fetchurl {
    url = "mirror://sourceforge/quvi/libquvi-scripts-${version}.tar.xz";
    sha256 = "1qvp6z5k1qgcys7vf7jd6fm0g07xixmciwj14ypn1kqhmjgizwhp";
  };

  nativeBuildInputs = [ pkg-config ];

  meta = {
    description = "Web video downloader";
    homepage = "http://quvi.sf.net";
    license = lib.licenses.lgpl21Plus;
    platforms = lib.platforms.linux;
    maintainers = [ ];
  };
}