summary refs log tree commit diff
path: root/pkgs/development/libraries/libykneomgr/default.nix
blob: 0356d7c1f4c1e6e5021e1da3a5fae4bf7f5ccb2e (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
{ stdenv, fetchurl, pkgconfig, pcsclite, libzip, help2man }:

stdenv.mkDerivation rec {
  name = "libykneomgr-0.1.6";

  src = fetchurl {
    url = "https://developers.yubico.com/libykneomgr/Releases/${name}.tar.gz";
    sha256 = "15fa4sslbzhzmkf0xik36as9lsmys1apqwjxv8sx7qlpacmxy3bw";
  };

  buildInputs = [ pkgconfig pcsclite libzip help2man ];

  configureFlags = [
    "--with-backend=pcsc"
  ];

  meta = with stdenv.lib; {
    homepage = https://developers.yubico.com/libykneomgr;
    description = "a C library to interact with the CCID-part of the Yubikey NEO";
    license = licenses.bsd3;
    platforms = platforms.unix;
    maintainers = with maintainers; [ wkennington ];
  };
}