3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/video/quvi/scripts.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
589 B
Nix
Raw Normal View History

{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";
2021-01-15 05:42:41 +00:00
license = lib.licenses.lgpl21Plus;
platforms = lib.platforms.linux;
maintainers = [ ];
broken = true; # missing glibc-2.34 support, no upstream activity
};
}