blob: 516edc55db39241a797cd66666685c6589141a9f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, libusb1
, openssl
, rage
, AppKit
}:
rustPlatform.buildRustPackage rec {
pname = "age-plugin-ledger";
version = "0.1.2";
src = fetchFromGitHub {
owner = "Ledger-Donjon";
repo = "age-plugin-ledger";
rev = "v${version}";
hash = "sha256-g5GbWXhaGEafiM3qkGlRXHcOzPZl2pbDWEBPg4gQWcg=";
};
cargoHash = "sha256-SbgH67XuxBa7WFirSdOIUxfJGlIYezISCEA3LJGN3ys=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libusb1
openssl
] ++ lib.optional stdenv.isDarwin AppKit;
nativeCheckInputs = [
rage
];
meta = with lib; {
description = "Ledger Nano plugin for age";
mainProgram = "age-plugin-ledger";
homepage = "https://github.com/Ledger-Donjon/age-plugin-ledger";
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ erdnaxe ];
};
}
|