mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
yubikey-manager: init at 0.3.1
This commit is contained in:
parent
85af430be3
commit
24308432b7
42
pkgs/tools/misc/yubikey-manager/default.nix
Normal file
42
pkgs/tools/misc/yubikey-manager/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ pythonPackages, fetchurl, lib,
|
||||
yubikey-personalization, libu2f-host, libusb1 }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
name = "yubikey-manager-0.3.1";
|
||||
|
||||
srcs = fetchurl {
|
||||
url = "https://developers.yubico.com/yubikey-manager/Releases/${name}.tar.gz";
|
||||
sha256 = "0vrhaqb8yc1qjq25k9dv8gmqxhbf6aa047i6dvz1lcraq6zwnq6g";
|
||||
};
|
||||
|
||||
propagatedBuildInputs =
|
||||
with pythonPackages;
|
||||
lib.optional (!pythonPackages.pythonAtLeast "3.4") enum34 ++ [
|
||||
click
|
||||
cryptography
|
||||
pyscard
|
||||
pyusb
|
||||
six
|
||||
] ++ [
|
||||
libu2f-host
|
||||
libusb1
|
||||
yubikey-personalization
|
||||
];
|
||||
|
||||
makeWrapperArgs = [
|
||||
"--prefix LD_LIBRARY_PATH : ${libu2f-host}/lib:${libusb1}/lib:${yubikey-personalization}/lib"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/etc/bash_completion.d
|
||||
_YKMAN_COMPLETE=source $out/bin/ykman > $out/etc/bash_completion.d/ykman.sh ||true
|
||||
'';
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -10165,6 +10165,8 @@ with pkgs;
|
||||
|
||||
yubico-piv-tool = callPackage ../tools/misc/yubico-piv-tool { };
|
||||
|
||||
yubikey-manager = callPackage ../tools/misc/yubikey-manager { };
|
||||
|
||||
yubikey-neo-manager = callPackage ../tools/misc/yubikey-neo-manager { };
|
||||
|
||||
yubikey-personalization = callPackage ../tools/misc/yubikey-personalization {
|
||||
|
Loading…
Reference in New Issue
Block a user