2021-01-25 00:26:54 -08:00
|
|
|
{ lib
|
2021-03-08 04:06:29 -08:00
|
|
|
, stdenv
|
2020-11-09 10:26:28 -08:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, trezor-udev-rules
|
2021-03-08 04:06:29 -08:00
|
|
|
, AppKit
|
2020-11-09 10:26:28 -08:00
|
|
|
}:
|
2017-02-08 08:18:22 -08:00
|
|
|
|
2020-11-09 10:26:28 -08:00
|
|
|
buildGoModule rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "trezord-go";
|
2021-04-09 08:34:24 -07:00
|
|
|
version = "2.0.31";
|
2017-02-08 08:18:22 -08:00
|
|
|
|
2018-04-10 15:12:32 -07:00
|
|
|
src = fetchFromGitHub {
|
2021-03-08 04:50:40 -08:00
|
|
|
owner = "trezor";
|
|
|
|
repo = "trezord-go";
|
|
|
|
rev = "v${version}";
|
2021-04-09 08:34:24 -07:00
|
|
|
sha256 = "130nhk1pnr3xx9qkcij81mm3jxrl5zvvdqhvrgvrikqg3zlb6v5b";
|
2017-09-11 13:26:40 -07:00
|
|
|
};
|
|
|
|
|
2020-11-09 10:26:28 -08:00
|
|
|
vendorSha256 = "0wb959xzyvr5zzjvkfqc422frmf97q5nr460f02wwx0pj6ch0y61";
|
|
|
|
|
2021-03-08 04:06:29 -08:00
|
|
|
propagatedBuildInputs = lib.optionals stdenv.isLinux [ trezor-udev-rules ]
|
2021-03-08 04:50:40 -08:00
|
|
|
++ lib.optionals stdenv.isDarwin [ AppKit ];
|
2019-10-27 06:17:02 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-12-27 10:47:43 -08:00
|
|
|
description = "Trezor Communication Daemon aka Trezor Bridge";
|
2019-05-28 09:51:39 -07:00
|
|
|
homepage = "https://trezor.io";
|
2021-04-09 08:34:24 -07:00
|
|
|
license = licenses.lgpl3Only;
|
2020-07-29 03:57:20 -07:00
|
|
|
maintainers = with maintainers; [ canndrew jb55 prusnak mmahut _1000101 ];
|
2019-02-17 05:00:33 -08:00
|
|
|
platforms = platforms.unix;
|
2017-02-08 08:18:22 -08:00
|
|
|
};
|
|
|
|
}
|