about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libykneomgr/default.nix
blob: d0fc1cfd9fbd1c9d494ee1505e8d7359d86fe89e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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 = "A 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;
  };
}