about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorOlivia Crain <olivia@olivia.dev>2024-01-12 14:17:11 -0600
committerOlivia Crain <olivia@olivia.dev>2024-01-12 15:07:06 -0600
commit6a5ee95e7899b7e7bcf76014998c388d75130461 (patch)
treef29dc7cf44cbc653f7f971637e3dee0c1f257fc3 /pkgs/applications/misc
parentc9bee5d761687ead2b8c1d89e2efafd1fa40be50 (diff)
garmin-plugin: remove
https://github.com/adiesner/GarminPlugin/issues/14
https://en.wikipedia.org/w/index.php?title=NPAPI&oldid=1187725523#Support

This package was abandoned upstream after Garmin removed support for the
plugin.

This package is an NPAPI browser plugin. NPAPI plugins have not been
supported by any major browsers since 2018. In nixpkgs, this package
has been unmaintained since 2020 and has not been touched by
non-treewide changes since 2015. No packages depend on garmin-plugin.
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/garmin-plugin/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/applications/misc/garmin-plugin/default.nix b/pkgs/applications/misc/garmin-plugin/default.nix
deleted file mode 100644
index c401b27225658..0000000000000
--- a/pkgs/applications/misc/garmin-plugin/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, garmintools, libgcrypt, libusb-compat-0_1, pkg-config, tinyxml, zlib }:
-
-stdenv.mkDerivation rec {
-  pname = "garmin-plugin";
-  version = "0.3.26";
-
-  src = fetchFromGitHub {
-    owner = "adiesner";
-    repo = "GarminPlugin";
-    rev = "V${version}";
-    sha256 = "sha256-l0WAbEsQl1dCADf5gTepYjsA1rQCJMLcrTxRR4PfUus=";
-  };
-
-  preConfigure = ''
-    cd src
-  '';
-
-  nativeBuildInputs = [ pkg-config ];
-
-  buildInputs = [ garmintools libusb-compat-0_1 libgcrypt tinyxml zlib ];
-
-  configureFlags = [
-    "--with-libgcrypt-prefix=${libgcrypt.dev}"
-    "--with-garmintools-incdir=${garmintools}/include"
-    "--with-garmintools-libdir=${garmintools}/lib"
-  ];
-
-  installPhase = ''
-    mkdir -p $out/lib/mozilla/plugins
-    cp npGarminPlugin.so $out/lib/mozilla/plugins
-  '';
-
-  meta = with lib; {
-    homepage = "https://adiesner.github.io/GarminPlugin/";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ ];
-    platforms = platforms.linux;
-  };
-}