mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
1675b11cd4
Unfortunately I can't reliably commit time to nixpkgs, so I would like to remove myself from being a formal maintainer for these packages.
17 lines
714 B
Nix
17 lines
714 B
Nix
{ stdenv, fetchurl, libusb-compat-0_1 }:
|
|
stdenv.mkDerivation {
|
|
name = "garmintools-0.10";
|
|
src = fetchurl {
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/garmintools/garmintools-0.10.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 = stdenv.lib.licenses.gpl2;
|
|
maintainers = [ ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|