Merge pull request #280584 from oliviacrain/remove-garmin-plugin
garmin-plugin: remove
This commit is contained in:
commit
97e55af0ee
3 changed files with 1 additions and 41 deletions
|
@ -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;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -302,6 +302,7 @@ mapAliases ({
|
||||||
g4py = python3Packages.geant4; # Added 2020-06-06
|
g4py = python3Packages.geant4; # Added 2020-06-06
|
||||||
garage_0_7 = throw "garage 0.7.x has been removed as it is EOL. Please upgrade to 0.8 series."; # Added 2023-10-10
|
garage_0_7 = throw "garage 0.7.x has been removed as it is EOL. Please upgrade to 0.8 series."; # Added 2023-10-10
|
||||||
garage_0_7_3 = throw "garage 0.7.x has been removed as it is EOL. Please upgrade to 0.8 series."; # Added 2023-10-10
|
garage_0_7_3 = throw "garage 0.7.x has been removed as it is EOL. Please upgrade to 0.8 series."; # Added 2023-10-10
|
||||||
|
garmin-plugin = throw "garmin-plugin has been removed, as it is unmaintained upstream and no longer works with modern browsers."; # Added 2024-01-12
|
||||||
garmindev = throw "'garmindev' has been removed as the dependent software 'qlandkartegt' has been removed"; # Added 2023-04-17
|
garmindev = throw "'garmindev' has been removed as the dependent software 'qlandkartegt' has been removed"; # Added 2023-04-17
|
||||||
gcl_2_6_13_pre = throw "'gcl_2_6_13_pre' has been removed in favor of 'gcl'"; # Added 2024-01-11
|
gcl_2_6_13_pre = throw "'gcl_2_6_13_pre' has been removed in favor of 'gcl'"; # Added 2024-01-11
|
||||||
geekbench4 = throw "'geekbench4' has been renamed to 'geekbench_4'"; # Added 2023-03-10
|
geekbench4 = throw "'geekbench4' has been renamed to 'geekbench_4'"; # Added 2023-03-10
|
||||||
|
|
|
@ -8479,8 +8479,6 @@ with pkgs;
|
||||||
garage_0_8 garage_0_9
|
garage_0_8 garage_0_9
|
||||||
garage_0_8_4 garage_0_9_0;
|
garage_0_8_4 garage_0_9_0;
|
||||||
|
|
||||||
garmin-plugin = callPackage ../applications/misc/garmin-plugin { };
|
|
||||||
|
|
||||||
garmintools = callPackage ../development/libraries/garmintools { };
|
garmintools = callPackage ../development/libraries/garmintools { };
|
||||||
|
|
||||||
gau = callPackage ../tools/security/gau { };
|
gau = callPackage ../tools/security/gau { };
|
||||||
|
|
Loading…
Reference in a new issue