9a9fff59b2
Failing Hydra build: https://hydra.nixos.org/build/163943269
Given that it hasn't had a release since 2013[1] and Gentoo/Fedora
already dropped it[2][3]. Also, there are a lot of alternative
stream/video downloaders, so it doesn't seem a big deal.
[1] http://quvi.sourceforge.net/news/
[2] https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80024f2367f394b46326064823d0c39f373e2820
[3] bf189503ae
27 lines
825 B
Nix
27 lines
825 B
Nix
{lib, stdenv, fetchurl, pkg-config, lua5, curl, quvi_scripts, libquvi, lua5_sockets, glib, makeWrapper}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "quvi";
|
|
version="0.9.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/quvi/quvi-${version}.tar.xz";
|
|
sha256 = "1h52s265rp3af16dvq1xlscp2926jqap2l4ah94vrfchv6m1hffb";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper ];
|
|
buildInputs = [ lua5 curl quvi_scripts libquvi glib ];
|
|
postInstall = ''
|
|
wrapProgram $out/bin/quvi --set LUA_PATH "${lua5_sockets}/share/lua/${lua5.luaversion}/?.lua"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Web video downloader";
|
|
homepage = "http://quvi.sf.net";
|
|
license = lib.licenses.lgpl21Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ ];
|
|
broken = true; # missing glibc-2.34 support, no upstream activity
|
|
};
|
|
}
|