mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
41 lines
972 B
Nix
41 lines
972 B
Nix
{ lib
|
|
, stdenv
|
|
, buildGoModule
|
|
, darwin
|
|
, fetchFromGitHub
|
|
, pcsclite
|
|
, pkg-config
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "piv-agent";
|
|
version = "0.21.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "smlx";
|
|
repo = "piv-agent";
|
|
rev = "v${version}";
|
|
hash = "sha256-nHxtQaQ5Lc0QAJrWU6fUWViDwOKkxVyj9/B6XZ+Y0zw=";
|
|
};
|
|
|
|
vendorHash = "sha256-L5HuTYA01w3LUtSy7OVxG6QN5uQZ8LVYyrBcJQTkIUA=";
|
|
|
|
subPackages = [ "cmd/piv-agent" ];
|
|
|
|
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.shortCommit=${src.rev}" ];
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
|
|
|
|
buildInputs =
|
|
if stdenv.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;
|
|
maintainers = [ ];
|
|
mainProgram = "piv-agent";
|
|
};
|
|
}
|