nixpkgs/pkgs/servers/trezord/default.nix

27 lines
752 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2017-02-08 16:18:22 +00:00
buildGoPackage rec {
name = "trezord-go-${version}";
2019-03-15 17:33:08 +00:00
version = "2.0.26";
2017-02-08 16:18:22 +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
goPackagePath = "github.com/trezor/trezord-go";
2017-02-08 16:18:22 +00:00
src = fetchFromGitHub {
owner = "trezor";
repo = "trezord-go";
rev = "v${version}";
2019-03-15 17:33:08 +00:00
sha256 = "0z6x3rf0wm1d7ws1n3m0vq8jmjjki2r9qrq4hkdq4nv61mw4ivyc";
};
2017-02-08 16:18:22 +00:00
meta = with stdenv.lib; {
description = "TREZOR Communication Daemon aka TREZOR Bridge";
2018-09-24 17:25:21 +00:00
homepage = https://trezor.io;
license = licenses.lgpl3;
2019-03-15 17:33:08 +00:00
maintainers = with maintainers; [ canndrew jb55 "1000101" prusnak ];
platforms = platforms.unix;
2017-02-08 16:18:22 +00:00
};
}