nixpkgs/pkgs/servers/trezord/default.nix

27 lines
756 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2017-02-08 17:18:22 +01:00
buildGoPackage rec {
name = "trezord-go-${version}";
2018-10-17 22:45:10 +02:00
version = "2.0.24";
2017-02-08 17:18:22 +01:00
# Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
hardeningDisable = [ "fortify" ];
2017-02-08 17:18:22 +01:00
goPackagePath = "github.com/trezor/trezord-go";
2017-02-08 17:18:22 +01:00
src = fetchFromGitHub {
owner = "trezor";
repo = "trezord-go";
rev = "v${version}";
2018-10-17 22:45:10 +02:00
sha256 = "1fl2d57qqrrwl995w4b2d57rvl2cxxy6afjmcp648hhb3dnmp7c3";
};
2017-02-08 17:18:22 +01:00
meta = with stdenv.lib; {
description = "TREZOR Communication Daemon aka TREZOR Bridge";
2018-09-24 19:25:21 +02:00
homepage = https://trezor.io;
license = licenses.lgpl3;
maintainers = with maintainers; [ canndrew jb55 maintainers."1000101"];
2017-02-08 17:18:22 +01:00
platforms = platforms.linux;
};
}