2018-04-11 00:12:32 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2017-02-08 17:18:22 +01:00
|
|
|
|
2018-04-11 00:12:32 +02:00
|
|
|
buildGoPackage rec {
|
|
|
|
name = "trezord-go-${version}";
|
2018-06-27 09:48:28 +02:00
|
|
|
version = "2.0.14";
|
2017-02-08 17:18:22 +01:00
|
|
|
|
2018-04-11 00:12:32 +02:00
|
|
|
# Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
|
|
|
|
hardeningDisable = [ "fortify" ];
|
2017-02-08 17:18:22 +01:00
|
|
|
|
2018-04-11 00:12:32 +02:00
|
|
|
goPackagePath = "github.com/trezor/trezord-go";
|
2017-02-08 17:18:22 +01:00
|
|
|
|
2018-04-11 00:12:32 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "trezor";
|
|
|
|
repo = "trezord-go";
|
|
|
|
rev = "v${version}";
|
2018-06-27 09:48:28 +02:00
|
|
|
sha256 = "1bnzib1cbs7cj6vdf015vr60vm5wgfgbqajcpqxcikfckwhjsykv";
|
2017-09-11 22:26:40 +02:00
|
|
|
};
|
|
|
|
|
2017-02-08 17:18:22 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-04-11 00:12:32 +02:00
|
|
|
description = "TREZOR Communication Daemon aka TREZOR Bridge";
|
2017-02-08 17:18:22 +01:00
|
|
|
homepage = https://mytrezor.com;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ canndrew jb55 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|