2019-10-27 13:17:02 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, trezor-udev-rules }:
|
2017-02-08 16:18:22 +00:00
|
|
|
|
2018-04-10 23:12:32 +01:00
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "trezord-go";
|
2020-03-09 18:28:24 +00:00
|
|
|
version = "2.0.29";
|
2017-02-08 16:18:22 +00:00
|
|
|
|
2018-04-10 23:12:32 +01:00
|
|
|
goPackagePath = "github.com/trezor/trezord-go";
|
2017-02-08 16:18:22 +00:00
|
|
|
|
2018-04-10 23:12:32 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "trezor";
|
|
|
|
repo = "trezord-go";
|
|
|
|
rev = "v${version}";
|
2020-03-09 18:28:24 +00:00
|
|
|
sha256 = "1ks1fa0027s3xp0z6qp0dxmayvrb4dwwscfhbx7da0khp153f2cp";
|
2017-09-11 21:26:40 +01:00
|
|
|
};
|
|
|
|
|
2019-10-27 13:17:02 +00:00
|
|
|
propagatedBuildInputs = [ trezor-udev-rules ];
|
|
|
|
|
2017-02-08 16:18:22 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-04-10 23:12:32 +01:00
|
|
|
description = "TREZOR Communication Daemon aka TREZOR Bridge";
|
2019-05-28 17:51:39 +01:00
|
|
|
homepage = "https://trezor.io";
|
2018-09-24 18:25:21 +01:00
|
|
|
license = licenses.lgpl3;
|
2019-08-18 20:16:19 +01:00
|
|
|
maintainers = with maintainers; [ canndrew jb55 prusnak mmahut maintainers."1000101" ];
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2017-02-08 16:18:22 +00:00
|
|
|
};
|
|
|
|
}
|