2021-01-17 05:09:27 +03:00
|
|
|
{lib, stdenv, fetchurl, pkg-config}:
|
2011-12-04 02:21:00 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "quvi-scripts";
|
2014-01-29 00:45:52 +04:00
|
|
|
version="0.9.20131130";
|
2011-12-04 02:21:00 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-01-29 00:45:52 +04:00
|
|
|
url = "mirror://sourceforge/quvi/libquvi-scripts-${version}.tar.xz";
|
|
|
|
sha256 = "1qvp6z5k1qgcys7vf7jd6fm0g07xixmciwj14ypn1kqhmjgizwhp";
|
2011-12-04 02:21:00 +04:00
|
|
|
};
|
|
|
|
|
2021-01-17 05:09:27 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2011-12-04 02:21:00 +04:00
|
|
|
|
2014-11-06 03:44:33 +03:00
|
|
|
meta = {
|
2013-10-06 13:49:53 +04:00
|
|
|
description = "Web video downloader";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://quvi.sf.net";
|
2021-01-15 08:42:41 +03:00
|
|
|
license = lib.licenses.lgpl21Plus;
|
|
|
|
platforms = lib.platforms.linux;
|
2018-01-17 08:13:23 +03:00
|
|
|
maintainers = [ ];
|
2022-01-28 19:00:05 +03:00
|
|
|
broken = true; # missing glibc-2.34 support, no upstream activity
|
2011-12-04 02:21:00 +04:00
|
|
|
};
|
|
|
|
}
|