nixpkgs/pkgs/servers/trezord/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
831 B
Nix
Raw Normal View History

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