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