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

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

41 lines
945 B
Nix
Raw Normal View History

{ lib
2021-03-08 13:06:29 +01:00
, stdenv
2020-11-09 19:26:28 +01:00
, buildGoModule
, fetchFromGitHub
, trezor-udev-rules
2021-03-08 13:06:29 +01:00
, AppKit
2020-11-09 19:26:28 +01:00
}:
2017-02-08 17:18:22 +01:00
2020-11-09 19:26:28 +01:00
buildGoModule rec {
pname = "trezord-go";
2022-11-06 01:09:42 +01:00
version = "2.0.32";
commit = "9aa6576";
2017-02-08 17:18:22 +01:00
src = fetchFromGitHub {
2021-03-08 13:50:40 +01:00
owner = "trezor";
repo = "trezord-go";
rev = "v${version}";
2022-11-06 01:09:42 +01:00
fetchSubmodules = true;
sha256 = "sha256-T7YoHi2sA22nfNbgX2WB5NIFIwxBkxn0CsSXyQTxgJc=";
};
2022-11-06 01:09:42 +01:00
vendorSha256 = "sha256-wXgAmZEXdM4FcMCQbAs+ydXshCAMu7nl/yVv/3sqaXE=";
2020-11-09 19:26:28 +01:00
2021-03-08 13:06:29 +01:00
propagatedBuildInputs = lib.optionals stdenv.isLinux [ trezor-udev-rules ]
2021-03-08 13:50:40 +01:00
++ lib.optionals stdenv.isDarwin [ AppKit ];
2022-11-06 01:09:42 +01:00
ldflags = [
"-s" "-w"
"-X main.githash=${commit}"
];
meta = with lib; {
2020-12-27 19:47:43 +01:00
description = "Trezor Communication Daemon aka Trezor Bridge";
2019-05-28 18:51:39 +02:00
homepage = "https://trezor.io";
2021-04-09 17:34:24 +02:00
license = licenses.lgpl3Only;
2020-07-29 12:57:20 +02:00
maintainers = with maintainers; [ canndrew jb55 prusnak mmahut _1000101 ];
mainProgram = "trezord-go";
platforms = platforms.unix;
2017-02-08 17:18:22 +01:00
};
}