commit
cab3caa97c
5 changed files with 1 additions and 80 deletions
|
@ -1,23 +0,0 @@
|
|||
{ 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
|
||||
};
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{lib, stdenv, fetchurl, pkg-config}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "quvi-scripts";
|
||||
version="0.9.20131130";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/quvi/libquvi-scripts-${version}.tar.xz";
|
||||
sha256 = "1qvp6z5k1qgcys7vf7jd6fm0g07xixmciwj14ypn1kqhmjgizwhp";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
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
|
||||
};
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
{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
|
||||
};
|
||||
}
|
|
@ -767,6 +767,7 @@ mapAliases ({
|
|||
qtcurve = libsForQt5.qtcurve; # Added 2020-11-07
|
||||
qtile-unwrapped = python3.pkgs.qtile; # Added 2023-05-12
|
||||
qutebrowser-qt6 = throw "'qutebrowser-qt6' has been replaced by 'qutebrowser', since the the qt5 version has been removed"; # Added 2023-08-19
|
||||
quvi = throw "'quvi' has been removed, as it was broken and unmaintained"; # Added 2023-11-25
|
||||
|
||||
### R ###
|
||||
|
||||
|
|
|
@ -32133,8 +32133,6 @@ with pkgs;
|
|||
|
||||
lemonade = callPackage ../applications/misc/lemonade { };
|
||||
|
||||
libquvi = callPackage ../applications/video/quvi/library.nix { };
|
||||
|
||||
LibreArp = callPackage ../applications/audio/LibreArp { };
|
||||
|
||||
LibreArp-lv2 = callPackage ../applications/audio/LibreArp/lv2.nix { };
|
||||
|
@ -32183,13 +32181,6 @@ with pkgs;
|
|||
|
||||
praat = callPackage ../applications/audio/praat { };
|
||||
|
||||
quvi = callPackage ../applications/video/quvi/tool.nix {
|
||||
lua5_sockets = lua51Packages.luasocket;
|
||||
lua5 = lua5_1;
|
||||
};
|
||||
|
||||
quvi_scripts = callPackage ../applications/video/quvi/scripts.nix { };
|
||||
|
||||
rhvoice = callPackage ../applications/audio/rhvoice { };
|
||||
|
||||
svox = callPackage ../applications/audio/svox { };
|
||||
|
|
Loading…
Reference in a new issue