nixpkgs/pkgs/tools/misc/ttwatch/default.nix

34 lines
875 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2020-06-14 13:39:40 +02:00
, cmake, perl, pkgconfig
, openssl, curl, libusb1, protobufc
2018-02-01 10:27:50 +01:00
, enableUnsafe ? false }:
2017-09-21 16:02:38 +02:00
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
pname = "ttwatch";
2020-06-14 13:39:40 +02:00
version = "2020-02-05";
2017-09-21 16:02:38 +02:00
src = fetchFromGitHub {
owner = "ryanbinns";
repo = "ttwatch";
2020-06-14 13:39:40 +02:00
rev = "bfdf1372515574e1fb3871dc1039f8d8a5dbdada";
sha256 = "07nd4dbkchxy8js1h1f6pzn63pls2afww97wyiiw6zid43mpqyg4";
2017-09-21 16:02:38 +02:00
};
2020-06-14 13:39:40 +02:00
nativeBuildInputs = [ cmake perl pkgconfig ];
buildInputs = [ openssl curl libusb1 protobufc ];
2017-09-21 16:02:38 +02:00
2018-02-01 10:27:50 +01:00
cmakeFlags = stdenv.lib.optional enableUnsafe [ "-Dunsafe=on" ];
2017-09-21 16:02:38 +02:00
preFixup = ''
chmod +x $out/bin/ttbin2mysports
'';
meta = with lib; {
homepage = "https://github.com/ryanbinns/ttwatch";
2017-09-21 16:02:38 +02:00
description = "Linux TomTom GPS Watch Utilities";
maintainers = with maintainers; [ dotlambda ];
license = licenses.mit;
platforms = with platforms; linux;
};
}