depot/third_party/nixpkgs/pkgs/development/libraries/libykneomgr/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

26 lines
724 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;
};
}