From a56c546e3ca80e772cfc996aeb5a59c539d5f338 Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Fri, 4 Sep 2026 00:17:26 -0700 Subject: [PATCH] garmintools: drop Upstream has been inactive since 2009: https://code.google.com/archive/p/garmintools/ --- pkgs/by-name/ga/garmintools/package.nix | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 pkgs/by-name/ga/garmintools/package.nix diff --git a/pkgs/by-name/ga/garmintools/package.nix b/pkgs/by-name/ga/garmintools/package.nix deleted file mode 100644 index 9ee07f8e51db..000000000000 --- a/pkgs/by-name/ga/garmintools/package.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - lib, - stdenv, - fetchurl, - libusb-compat-0_1, -}: -stdenv.mkDerivation (finalAttrs: { - pname = "garmintools"; - version = "0.10"; - src = fetchurl { - url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/garmintools/garmintools-${finalAttrs.version}.tar.gz"; - sha256 = "1vjc8h0z4kx2h52yc3chxn3wh1krn234fg12sggbia9zjrzhpmgz"; - }; - buildInputs = [ libusb-compat-0_1 ]; - meta = { - description = "Provides the ability to communicate with the Garmin Forerunner 305 via the USB interface"; - homepage = "https://code.google.com/archive/p/garmintools/"; # community clone at https://github.com/ianmartin/garmintools - license = lib.licenses.gpl2; - maintainers = [ ]; - platforms = lib.platforms.unix; - # never built on aarch64-darwin since first introduction in nixpkgs - # The last successful Darwin Hydra build was in 2024 - broken = stdenv.hostPlatform.isDarwin; - }; -})