about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/garmin-plugin/default.nix
blob: c401b27225658817a1d706a8ac7b905e47c8d6f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ 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;
  };
}