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
24 lines
692 B
Nix
24 lines
692 B
Nix
{ lib, stdenv, fetchurl, pkg-config, lua5, curl, quvi_scripts, libproxy, libgcrypt, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libquvi";
|
|
version="0.9.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/quvi/libquvi-${version}.tar.xz";
|
|
sha256 = "1cl1kbgxl1jnx2nwx4z90l0lap09lnnj1fg7hxsxk3m6aj4y4grd";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ lua5 curl quvi_scripts libproxy libgcrypt glib ];
|
|
|
|
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
|
|
};
|
|
}
|