2018-04-10 22:12:32 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2017-02-08 16:18:22 +00:00
|
|
|
|
2018-04-10 22:12:32 +00:00
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "trezord-go";
|
2019-05-28 16:51:39 +00:00
|
|
|
version = "2.0.27";
|
2017-02-08 16:18:22 +00:00
|
|
|
|
2018-04-10 22:12:32 +00:00
|
|
|
# Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
|
|
|
|
hardeningDisable = [ "fortify" ];
|
2017-02-08 16:18:22 +00:00
|
|
|
|
2018-04-10 22:12:32 +00:00
|
|
|
goPackagePath = "github.com/trezor/trezord-go";
|
2017-02-08 16:18:22 +00:00
|
|
|
|
2018-04-10 22:12:32 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "trezor";
|
|
|
|
repo = "trezord-go";
|
|
|
|
rev = "v${version}";
|
2019-05-28 16:51:39 +00:00
|
|
|
sha256 = "00d90qmmk1pays78a2jm8gb7dncvlsjjn4033q1yd1ii3fxc6nh8";
|
2017-09-11 20:26:40 +00:00
|
|
|
};
|
|
|
|
|
2017-02-08 16:18:22 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-04-10 22:12:32 +00:00
|
|
|
description = "TREZOR Communication Daemon aka TREZOR Bridge";
|
2019-05-28 16:51:39 +00:00
|
|
|
homepage = "https://trezor.io";
|
2018-09-24 17:25:21 +00:00
|
|
|
license = licenses.lgpl3;
|
2019-08-18 19:16:19 +00: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
|
|
|
};
|
|
|
|
}
|