3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/age-plugin-yubikey/default.nix

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

41 lines
835 B
Nix
Raw Normal View History

2021-12-24 19:55:14 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, pcsclite
, PCSC
, Foundation
2021-12-24 19:55:14 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "age-plugin-yubikey";
version = "0.3.2";
2021-12-24 19:55:14 +00:00
src = fetchFromGitHub {
owner = "str4d";
repo = pname;
rev = "v${version}";
sha256 = "sha256-x4J8lE4Peenu3I7bZ3yoLpyukkMHD2re63GCni0cfnI=";
2021-12-24 19:55:14 +00:00
};
cargoSha256 = "sha256-Qp7AXy044G17FxR2sopN00cgX91A8TAydrwvJrAfhns=";
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
2021-12-24 19:55:14 +00:00
buildInputs =
if stdenv.isDarwin then [
Foundation
2021-12-24 19:55:14 +00:00
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 ];
};
}