Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / video / quvi / scripts.nix
bloba31ef6e72ae6af4b7e728f49a9f280d41a2a482c
1 {lib, stdenv, fetchurl, pkg-config}:
3 stdenv.mkDerivation rec {
4   pname = "quvi-scripts";
5   version="0.9.20131130";
7   src = fetchurl {
8     url = "mirror://sourceforge/quvi/libquvi-scripts-${version}.tar.xz";
9     sha256 = "1qvp6z5k1qgcys7vf7jd6fm0g07xixmciwj14ypn1kqhmjgizwhp";
10   };
12   nativeBuildInputs = [ pkg-config ];
14   meta = {
15     description = "Web video downloader";
16     homepage = "http://quvi.sf.net";
17     license = lib.licenses.lgpl21Plus;
18     platforms = lib.platforms.linux;
19     maintainers = [ ];
20     broken = true; # missing glibc-2.34 support, no upstream activity
21   };