Files
nixpkgs/pkgs/by-name/li/libu2f-host/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

48 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchurl,
fetchpatch,
pkg-config,
json_c,
hidapi,
}:
stdenv.mkDerivation rec {
pname = "libu2f-host";
version = "1.1.10";
src = fetchurl {
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.xz";
sha256 = "0vrivl1dwql6nfi48z6dy56fwy2z13d7abgahgrs2mcmqng7hra2";
};
patches = [
# remove after updating to next release
(fetchpatch {
name = "json-c-0.14-support.patch";
url = "https://github.com/Yubico/libu2f-host/commit/840f01135d2892f45e71b9e90405de587991bd03.patch";
sha256 = "0xplx394ppsbsb4h4l8b9m4dv9shbl0zyck3y26vbm9i1g981ki7";
})
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [
json_c
hidapi
];
doCheck = true;
meta = with lib; {
description = "C library and command-line tool that implements the host-side of the U2F protocol";
homepage = "https://developers.yubico.com/libu2f-host";
license = with licenses; [
gpl3Plus
lgpl21Plus
];
mainProgram = "u2f-host";
platforms = platforms.unix;
};
}