nixpkgs/pkgs/servers/trezord/default.nix

48 lines
1.1 KiB
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
, fetchpatch
2020-11-09 21:26:28 +03:00
, 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";
2023-04-30 12:22:11 +03:00
version = "2.0.33";
commit = "2680d5e";
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}";
2022-11-06 03:09:42 +03:00
fetchSubmodules = true;
2023-04-30 12:22:11 +03:00
sha256 = "sha256-3I6NOzDMhzRyVSOURl7TjJ1Z0P0RcKrSs5rNaZ0Ho9M=";
};
vendorHash = "sha256-wXgAmZEXdM4FcMCQbAs+ydXshCAMu7nl/yVv/3sqaXE=";
2020-11-09 21:26:28 +03:00
patches = [
(fetchpatch {
url = "https://github.com/trezor/trezord-go/commit/616473d53a8ae49f1099e36ab05a2981a08fa606.patch";
hash = "sha256-yKTwgqWr4L6XEPV85A6D1wpRdpef8hkIbl4LrRmOyuo=";
})
];
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 ];
2022-11-06 03:09:42 +03:00
ldflags = [
"-s" "-w"
"-X main.githash=${commit}"
];
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";
2017-02-08 19:18:22 +03:00
};
}