diff --git a/pkgs/by-name/ag/age-plugin-openpgp-card/package.nix b/pkgs/by-name/ag/age-plugin-openpgp-card/package.nix new file mode 100644 index 000000000000..878e174579a4 --- /dev/null +++ b/pkgs/by-name/ag/age-plugin-openpgp-card/package.nix @@ -0,0 +1,42 @@ +{ + 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 ]; + }; +})