nixpkgs/pkgs/development/libraries/libykneomgr/default.nix

25 lines
670 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkg-config, pcsclite, libzip, help2man }:
2014-10-24 23:36:03 +00:00
stdenv.mkDerivation rec {
2015-11-06 17:31:57 +00:00
name = "libykneomgr-0.1.8";
2014-10-24 23:36:03 +00:00
src = fetchurl {
url = "https://developers.yubico.com/libykneomgr/Releases/${name}.tar.gz";
2015-11-06 17:31:57 +00:00
sha256 = "12gqblz400kr11m1fdr1vvwr85lgy5v55zy0cf782whpk8lyyj97";
2014-10-24 23:36:03 +00:00
};
nativeBuildInputs = [ pkg-config ];
2015-09-18 02:22:43 +00:00
buildInputs = [ pcsclite libzip help2man ];
2014-10-24 23:36:03 +00:00
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";
2014-10-24 23:36:03 +00:00
license = licenses.bsd3;
platforms = platforms.unix;
};
}