about summary refs log tree commit diff
path: root/pkgs/tools/security/age-plugin-yubikey/default.nix
blob: a880f490dc7e59c799107a1434786e6cfd476749 (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
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, pcsclite
, PCSC
}:

rustPlatform.buildRustPackage rec {
  pname = "age-plugin-yubikey";
  version = "0.2.0";

  src = fetchFromGitHub {
    owner = "str4d";
    repo = pname;
    rev = "51910edfab4006a068864602469ff7db3766bfbe"; # no tag for this release
    sha256 = "sha256-mMqvBlGFdwe5BaC0bXZg/27BGNmFTTYbLUHWUciqxQ0=";
  };

  cargoSha256 = "sha256-OCbVLSmGx51pJ/EPgPfOyVrYWdloNEbexDV1zMsmEJc=";

  nativeBuildInputs = [ pkg-config ];
  buildInputs =
    if stdenv.isDarwin then [
      PCSC
    ] else [
      pcsclite
    ];

  meta = with lib; {
    description = "YubiKey plugin for age clients";
    homepage = "https://github.com/str4d/age-plugin-yubikey";
    license = with licenses; [ asl20 mit ];
    maintainers = with maintainers; [ vtuan10 ];
  };
}