summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2018-04-16 17:30:42 +0800
committerRobin Gloster <mail@glob.in>2018-05-02 12:26:54 +0200
commit490e6fc9eb051b93482761ab667697972a259b34 (patch)
tree81c8dce2b23ce745277cdfdbfbcfc40f0eb9643c /pkgs/applications/video
parenta0dd9713e31bf2dfbe33ed50f2915d1c654344db (diff)
downloadnixlib-490e6fc9eb051b93482761ab667697972a259b34.tar
nixlib-490e6fc9eb051b93482761ab667697972a259b34.tar.gz
nixlib-490e6fc9eb051b93482761ab667697972a259b34.tar.bz2
nixlib-490e6fc9eb051b93482761ab667697972a259b34.tar.lz
nixlib-490e6fc9eb051b93482761ab667697972a259b34.tar.xz
nixlib-490e6fc9eb051b93482761ab667697972a259b34.tar.zst
nixlib-490e6fc9eb051b93482761ab667697972a259b34.zip
vlc_npapi: drop it as firefox no longer support NPAPI
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/vlc/plugin.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/applications/video/vlc/plugin.nix b/pkgs/applications/video/vlc/plugin.nix
deleted file mode 100644
index 583d978a5514..000000000000
--- a/pkgs/applications/video/vlc/plugin.nix
+++ /dev/null
@@ -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;
-  };
-}