linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libykneomgr / default.nix
bloba7d35950f034764b770ee2a85350532fa76697e6
1 { lib, stdenv, fetchurl, pkg-config, pcsclite, libzip, help2man }:
3 stdenv.mkDerivation rec {
4   name = "libykneomgr-0.1.8";
6   src = fetchurl {
7     url = "https://developers.yubico.com/libykneomgr/Releases/${name}.tar.gz";
8     sha256 = "12gqblz400kr11m1fdr1vvwr85lgy5v55zy0cf782whpk8lyyj97";
9   };
11   nativeBuildInputs = [ pkg-config ];
12   buildInputs = [ pcsclite libzip help2man ];
14   configureFlags = [
15     "--with-backend=pcsc"
16   ];
18   meta = with lib; {
19     homepage = "https://developers.yubico.com/libykneomgr";
20     description = "A C library to interact with the CCID-part of the Yubikey NEO";
21     license = licenses.bsd3;
22     platforms = platforms.unix;
23   };