Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / video / quvi / tool.nix
blobad6233cbd00124fe123a641c25c1c4fd0ce278d9
1 {lib, stdenv, fetchurl, pkg-config, lua5, curl, quvi_scripts, libquvi, lua5_sockets, glib, makeWrapper}:
3 stdenv.mkDerivation rec {
4   pname = "quvi";
5   version="0.9.5";
7   src = fetchurl {
8     url = "mirror://sourceforge/quvi/quvi-${version}.tar.xz";
9     sha256 = "1h52s265rp3af16dvq1xlscp2926jqap2l4ah94vrfchv6m1hffb";
10   };
12   nativeBuildInputs = [ pkg-config makeWrapper ];
13   buildInputs = [ lua5 curl quvi_scripts libquvi glib ];
14   postInstall = ''
15       wrapProgram $out/bin/quvi --set LUA_PATH "${lua5_sockets}/share/lua/${lua5.luaversion}/?.lua"
16   '';
18   meta = {
19     description = "Web video downloader";
20     homepage = "http://quvi.sf.net";
21     license = lib.licenses.lgpl21Plus;
22     platforms = lib.platforms.linux;
23     maintainers = [ ];
24     broken = true; # missing glibc-2.34 support, no upstream activity
25   };