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";
2020-06-14 11:39:40 +00:00
version = "2020-02-05";
2017-09-21 14:02:38 +00:00
src = fetchFromGitHub {
owner = "ryanbinns";
repo = "ttwatch";
2020-06-14 11:39:40 +00:00
rev = "bfdf1372515574e1fb3871dc1039f8d8a5dbdada";
sha256 = "07nd4dbkchxy8js1h1f6pzn63pls2afww97wyiiw6zid43mpqyg4";
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;
};
}