Skip to content

Commit

Permalink
ttwatch: 2018-12-04 -> 2020-02-05
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Jun 14, 2020
1 parent 20e62aa commit c92b33d
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pkgs/tools/misc/ttwatch/default.nix
@@ -1,19 +1,21 @@
{ stdenv, fetchFromGitHub, cmake, perl, openssl, curl, libusb1
{ stdenv, fetchFromGitHub
, cmake, perl, pkgconfig
, openssl, curl, libusb1, protobufc
, enableUnsafe ? false }:

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

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

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

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

Expand Down

0 comments on commit c92b33d

Please sign in to comment.