587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
38 lines
891 B
Nix
38 lines
891 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, asciidoc
|
|
, libxslt
|
|
, docbook_xsl
|
|
, pam
|
|
, yubikey-personalization
|
|
, libyubikey
|
|
, libykclient
|
|
, CoreServices
|
|
, SystemConfiguration
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yubico-pam";
|
|
version = "2.27";
|
|
src = fetchFromGitHub {
|
|
owner = "Yubico";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0hb773zlf11xz4bwmsqv2mq5d4aq2g0crdr5cp9xwc4ivi5gd4kg";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config asciidoc libxslt docbook_xsl ];
|
|
buildInputs = [ pam yubikey-personalization libyubikey libykclient ]
|
|
++ lib.optionals stdenv.isDarwin [ CoreServices SystemConfiguration ];
|
|
|
|
meta = with lib; {
|
|
description = "Yubico PAM module";
|
|
mainProgram = "ykpamcfg";
|
|
homepage = "https://developers.yubico.com/yubico-pam";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
};
|
|
}
|