nixpkgs-suyu/pkgs/servers/trezord/default.nix

26 lines
705 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub, trezor-udev-rules }:
2017-02-08 17:18:22 +01:00
buildGoPackage rec {
pname = "trezord-go";
2020-03-09 19:28:24 +01:00
version = "2.0.29";
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}";
2020-03-09 19:28:24 +01:00
sha256 = "1ks1fa0027s3xp0z6qp0dxmayvrb4dwwscfhbx7da0khp153f2cp";
};
propagatedBuildInputs = [ trezor-udev-rules ];
2017-02-08 17:18:22 +01:00
meta = with stdenv.lib; {
description = "TREZOR Communication Daemon aka TREZOR Bridge";
2019-05-28 18:51:39 +02:00
homepage = "https://trezor.io";
2018-09-24 19:25:21 +02:00
license = licenses.lgpl3;
maintainers = with maintainers; [ canndrew jb55 prusnak mmahut maintainers."1000101" ];
platforms = platforms.unix;
2017-02-08 17:18:22 +01:00
};
}