2014-10-24 16:35:33 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, json_c, hidapi }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-17 04:46:07 -07:00
|
|
|
name = "libu2f-host-1.1.6";
|
2014-10-24 16:35:33 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://developers.yubico.com/libu2f-host/Releases/${name}.tar.xz";
|
2018-05-17 04:46:07 -07:00
|
|
|
sha256 = "19xxwwqfzg3njfpxvhlyxd05wjwsdw3m4lpn7gk31cna6agbp82d";
|
2014-10-24 16:35:33 -07:00
|
|
|
};
|
|
|
|
|
2015-09-17 19:22:14 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ json_c hidapi ];
|
2014-10-24 16:35:33 -07:00
|
|
|
|
2016-05-08 13:37:23 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
2016-04-24 05:34:25 -07:00
|
|
|
postInstall = ''
|
2016-05-08 13:37:23 -07:00
|
|
|
install -D -t $out/lib/udev/rules.d 70-u2f.rules
|
2016-04-24 05:34:25 -07:00
|
|
|
'';
|
|
|
|
|
2014-10-24 16:35:33 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://developers.yubico.com/libu2f-host;
|
2017-12-05 20:58:29 -08:00
|
|
|
description = "A C library and command-line tool that implements the host-side of the U2F protocol";
|
2014-10-24 16:35:33 -07:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|