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

34 lines
870 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2021-01-17 03:51:22 +00:00
, cmake, perl, pkg-config
2020-06-14 11:39:40 +00:00
, openssl, curl, libusb1, protobufc
2018-02-01 09:27:50 +00:00
, enableUnsafe ? false }:
2017-09-21 14:02:38 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "ttwatch";
2021-02-09 19:34:45 +00:00
version = "2020-06-24";
2017-09-21 14:02:38 +00:00
src = fetchFromGitHub {
owner = "ryanbinns";
repo = "ttwatch";
2021-02-09 19:34:45 +00:00
rev = "260aff5869fd577d788d86b546399353d9ff72c1";
sha256 = "0yd2hs9d03gfvwm1vywpg2qga6x5c74zrj665wf9aa8gmn96hv8r";
2017-09-21 14:02:38 +00:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ cmake perl pkg-config ];
2020-06-14 11:39:40 +00:00
buildInputs = [ openssl curl libusb1 protobufc ];
2017-09-21 14:02:38 +00:00
2021-01-15 09:19:50 +00:00
cmakeFlags = lib.optional enableUnsafe [ "-Dunsafe=on" ];
2018-02-01 09:27:50 +00:00
2017-09-21 14:02:38 +00:00
preFixup = ''
chmod +x $out/bin/ttbin2mysports
'';
meta = with lib; {
homepage = "https://github.com/ryanbinns/ttwatch";
2017-09-21 14:02:38 +00:00
description = "Linux TomTom GPS Watch Utilities";
maintainers = with maintainers; [ dotlambda ];
license = licenses.mit;
platforms = with platforms; linux;
};
}