Files

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

43 lines
977 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchFromGitHub,
rustPlatform,
pcsclite,
pkg-config,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "age-plugin-openpgp-card";
version = "0.1.1";
src = fetchFromGitHub {
owner = "wiktor-k";
repo = "age-plugin-openpgp-card";
rev = "v${finalAttrs.version}";
hash = "sha256-uJmYtc+GxJZtCjLQla/h9vpTzPcsL+zbM2uvAQsfwIY=";
};
cargoHash = "sha256-YZGrEO6SOS0Kir+1d8shf54420cYjvcfKYS+T2NlEug=";
buildInputs = [ pcsclite ];
nativeBuildInputs = [ pkg-config ];
meta = {
description = "Age plugin for using ed25519 on OpenPGP Card devices (Yubikeys, Nitrokeys)";
homepage = "https://github.com/wiktor-k/age-plugin-openpgp-card";
license = with lib.licenses; [
asl20
mit
];
platforms = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
mainProgram = "age-plugin-openpgp-card";
maintainers = with lib.maintainers; [ nukdokplex ];
};
})