Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
753 B
Nix
39 lines
753 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
pcsclite,
|
|
libzip,
|
|
help2man,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libykneomgr";
|
|
version = "0.1.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://developers.yubico.com/libykneomgr/Releases/${pname}-${version}.tar.gz";
|
|
sha256 = "12gqblz400kr11m1fdr1vvwr85lgy5v55zy0cf782whpk8lyyj97";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
pcsclite
|
|
libzip
|
|
help2man
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-backend=pcsc"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "C library to interact with the CCID-part of the Yubikey NEO";
|
|
homepage = "https://developers.yubico.com/libykneomgr";
|
|
license = licenses.bsd3;
|
|
mainProgram = "ykneomgr";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|