1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

vlc_npapi: drop it as firefox no longer support NPAPI

This commit is contained in:
Peter Hoeg 2018-04-16 17:30:42 +08:00 committed by Robin Gloster
parent a0dd9713e3
commit 490e6fc9eb
2 changed files with 1 additions and 38 deletions

View file

@ -1,34 +0,0 @@
{ stdenv, fetchgit, vlc, autoconf, automake, libtool, pkgconfig, npapi_sdk,
libxcb, xlibsWrapper, gtk}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "vlc-plugin-${version}";
version = "2.2.2"; # This 2.2.2 builds fine with vlc 2.2.4
src = fetchgit {
url = "https://code.videolan.org/videolan/npapi-vlc.git";
rev = "5fa6fbc11cf5bad983f57656c0085e47e18fbf20";
sha256 = "0k4s0657kv1mx1md8vj87scs0hz59xy7syqdsxb48w3w8gnfljs0";
};
preConfigure = "sh autogen.sh";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ vlc autoconf automake libtool npapi_sdk libxcb
xlibsWrapper gtk ];
enableParallelBuilding = true;
passthru = {
mozillaPlugin = "/lib/mozilla/plugins";
};
meta = with stdenv.lib; {
description = "Webplugins based on libVLC (for firefox, npapi)";
homepage = https://code.videolan.org/videolan/npapi-vlc;
platforms = platforms.linux;
license = licenses.gpl2Plus;
};
}

View file

@ -18183,11 +18183,8 @@ with pkgs;
vkeybd = callPackage ../applications/audio/vkeybd {};
vlc = libsForQt5.vlc;
vlc_qt5 = vlc;
vlc_npapi = callPackage ../applications/video/vlc/plugin.nix {
gtk = gtk2;
};
vlc_qt5 = vlc;
vmpk = callPackage ../applications/audio/vmpk { };