summary refs log blame commit diff
path: root/pkgs/tools/misc/ttwatch/default.nix
blob: dd7b1fae862f153e6b5755ca10fee8e28557b3a8 (plain) (tree)
1
2
3
4
5
6
7
8
                              

                                   
                         
 
                     
                    
                         



                         

                                                                    

    

                                                   
 
                                                           
 



                                    
                    
                                                      





                                                     
{ lib, stdenv, fetchFromGitHub
, cmake, perl, pkgconfig
, openssl, curl, libusb1, protobufc
, enableUnsafe ? false }:

stdenv.mkDerivation {
  pname = "ttwatch";
  version = "2020-02-05";

  src = fetchFromGitHub {
    owner = "ryanbinns";
    repo = "ttwatch";
    rev = "bfdf1372515574e1fb3871dc1039f8d8a5dbdada";
    sha256 = "07nd4dbkchxy8js1h1f6pzn63pls2afww97wyiiw6zid43mpqyg4";
  };

  nativeBuildInputs = [ cmake perl pkgconfig ];
  buildInputs = [ openssl curl libusb1 protobufc ];

  cmakeFlags = lib.optional enableUnsafe [ "-Dunsafe=on" ];

  preFixup = ''
    chmod +x $out/bin/ttbin2mysports
  '';

  meta = with lib; {
    homepage = "https://github.com/ryanbinns/ttwatch";
    description = "Linux TomTom GPS Watch Utilities";
    maintainers = with maintainers; [ dotlambda ];
    license = licenses.mit;
    platforms = with platforms; linux;
  };
}