e398c920cf
* yubikey-manager: 2.0.0 -> 2.1.0 * yubikey-manager-qt: 1.1.0 -> 1.1.1
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{ python3Packages, fetchurl, lib,
|
|
yubikey-personalization, libu2f-host, libusb1 }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "yubikey-manager";
|
|
version = "2.1.0";
|
|
|
|
srcs = fetchurl {
|
|
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
|
|
sha256 = "11rsmcaj60k3y5m5gdhr2nbbz0w5dm3m04klyxz0fh5hnpcmr7fm";
|
|
};
|
|
|
|
propagatedBuildInputs =
|
|
with python3Packages; [
|
|
click
|
|
cryptography
|
|
pyscard
|
|
pyusb
|
|
pyopenssl
|
|
six
|
|
fido2
|
|
] ++ [
|
|
libu2f-host
|
|
libusb1
|
|
yubikey-personalization
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix" "LD_LIBRARY_PATH" ":"
|
|
(lib.makeLibraryPath [ libu2f-host libusb1 yubikey-personalization ])
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/bash-completion/completions
|
|
_YKMAN_COMPLETE=source $out/bin/ykman > $out/share/bash-completion/completions/ykman || :
|
|
'';
|
|
|
|
# See https://github.com/NixOS/nixpkgs/issues/29169
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = https://developers.yubico.com/yubikey-manager;
|
|
description = "Command line tool for configuring any YubiKey over all USB transports.";
|
|
|
|
license = licenses.bsd2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ benley mic92 ];
|
|
};
|
|
}
|