nixpkgs/pkgs/servers/trezord/default.nix

33 lines
799 B
Nix
Raw Normal View History

{ lib
2021-03-08 12:06:29 +00:00
, stdenv
2020-11-09 18:26:28 +00:00
, buildGoModule
, fetchFromGitHub
, trezor-udev-rules
2021-03-08 12:06:29 +00:00
, AppKit
2020-11-09 18:26:28 +00:00
}:
2017-02-08 16:18:22 +00:00
2020-11-09 18:26:28 +00:00
buildGoModule rec {
pname = "trezord-go";
2021-04-09 15:34:24 +00:00
version = "2.0.31";
2017-02-08 16:18:22 +00:00
src = fetchFromGitHub {
2021-03-08 12:50:40 +00:00
owner = "trezor";
repo = "trezord-go";
rev = "v${version}";
2021-04-09 15:34:24 +00:00
sha256 = "130nhk1pnr3xx9qkcij81mm3jxrl5zvvdqhvrgvrikqg3zlb6v5b";
};
2020-11-09 18:26:28 +00:00
vendorSha256 = "0wb959xzyvr5zzjvkfqc422frmf97q5nr460f02wwx0pj6ch0y61";
2021-03-08 12:06:29 +00:00
propagatedBuildInputs = lib.optionals stdenv.isLinux [ trezor-udev-rules ]
2021-03-08 12:50:40 +00:00
++ lib.optionals stdenv.isDarwin [ AppKit ];
meta = with lib; {
2020-12-27 18:47:43 +00:00
description = "Trezor Communication Daemon aka Trezor Bridge";
2019-05-28 16:51:39 +00:00
homepage = "https://trezor.io";
2021-04-09 15:34:24 +00:00
license = licenses.lgpl3Only;
2020-07-29 10:57:20 +00:00
maintainers = with maintainers; [ canndrew jb55 prusnak mmahut _1000101 ];
platforms = platforms.unix;
2017-02-08 16:18:22 +00:00
};
}