nixpkgs/pkgs/servers/trezord/default.nix

27 lines
748 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2017-02-08 16:18:22 +00:00
buildGoPackage rec {
name = "trezord-go-${version}";
version = "2.0.14";
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}";
sha256 = "1bnzib1cbs7cj6vdf015vr60vm5wgfgbqajcpqxcikfckwhjsykv";
};
2017-02-08 16:18:22 +00:00
meta = with stdenv.lib; {
description = "TREZOR Communication Daemon aka TREZOR Bridge";
2017-02-08 16:18:22 +00:00
homepage = https://mytrezor.com;
license = licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ canndrew jb55 ];
platforms = platforms.linux;
};
}