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