63a4722d7b
This is a web browser plugin that allows one to use their Garmin device on the myGarmin website. It provides a Linux version of the Garmin Communicator plugin.
25 lines
879 B
Nix
25 lines
879 B
Nix
{ stdenv, fetchurl, garmintools, libgcrypt, libusb, pkgconfig, tinyxml, zlib }:
|
|
stdenv.mkDerivation {
|
|
name = "garmin-plugin-0.3.26";
|
|
src = fetchurl {
|
|
url = https://github.com/adiesner/GarminPlugin/archive/V0.3.26.tar.gz;
|
|
sha256 = "15gads1fj4sj970m5960dgnhys41ksi4cm53ldkf67wn8dc9i4k0";
|
|
};
|
|
sourceRoot = "GarminPlugin-0.3.26/src";
|
|
buildInputs = [ garmintools libusb libgcrypt pkgconfig tinyxml zlib ];
|
|
configureFlags = [
|
|
"--with-libgcrypt-prefix=${libgcrypt}"
|
|
"--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 = {
|
|
homepage = http://www.andreas-diesner.de/garminplugin;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = [ stdenv.lib.maintainers.ocharles ];
|
|
};
|
|
}
|