nixpkgs/pkgs/by-name/pi/piv-agent/package.nix

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

42 lines
998 B
Nix
Raw Normal View History

2024-04-05 04:20:00 +00:00
{ lib
, stdenv
, buildGoModule
, darwin
, fetchFromGitHub
, pcsclite
, pkg-config
}:
buildGoModule rec {
pname = "piv-agent";
2024-11-01 14:59:29 +00:00
version = "0.22.0";
2024-04-05 04:20:00 +00:00
src = fetchFromGitHub {
owner = "smlx";
repo = "piv-agent";
rev = "v${version}";
2024-11-01 14:59:29 +00:00
hash = "sha256-bfJIrWDFQIg0n1RDadARPHhQwE6i7mAMxE5GPYo4WU8=";
2024-04-05 04:20:00 +00:00
};
2024-11-01 14:59:29 +00:00
vendorHash = "sha256-HIB+p0yh7EWudLp1YGoClYbK3hkYEJZ+o+9BbOHE4+0=";
2024-04-05 04:20:00 +00:00
subPackages = [ "cmd/piv-agent" ];
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.shortCommit=${src.rev}" ];
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ];
buildInputs =
if stdenv.hostPlatform.isDarwin
then [ darwin.apple_sdk.frameworks.PCSC ]
else [ pcsclite ];
meta = with lib; {
description = "SSH and GPG agent which you can use with your PIV hardware security device (e.g. a Yubikey)";
homepage = "https://github.com/smlx/piv-agent";
license = licenses.asl20;
2024-04-24 04:20:00 +00:00
maintainers = [ ];
2024-04-05 04:20:00 +00:00
mainProgram = "piv-agent";
};
}