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

26 lines
719 B
Nix
Raw Normal View History

2014-10-25 03:36:03 +04:00
{ stdenv, fetchurl, pkgconfig, pcsclite, libzip, help2man }:
stdenv.mkDerivation rec {
2015-09-18 05:22:43 +03:00
name = "libykneomgr-0.1.7";
2014-10-25 03:36:03 +04:00
src = fetchurl {
url = "https://developers.yubico.com/libykneomgr/Releases/${name}.tar.gz";
2015-09-18 05:22:43 +03:00
sha256 = "0nlzl9g0gjb54h43gjhg8d25bq3m3s794cq671irpqkn94kj1knw";
2014-10-25 03:36:03 +04:00
};
2015-09-18 05:22:43 +03:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ pcsclite libzip help2man ];
2014-10-25 03:36:03 +04: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";
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}