nixpkgs/pkgs/development/libraries/libu2f-host/default.nix

21 lines
638 B
Nix
Raw Normal View History

2014-10-24 23:35:33 +00:00
{ stdenv, fetchurl, pkgconfig, json_c, hidapi }:
stdenv.mkDerivation rec {
2015-02-06 20:51:39 +00:00
name = "libu2f-host-0.0.4";
2014-10-24 23:35:33 +00:00
src = fetchurl {
url = "https://developers.yubico.com/libu2f-host/Releases/${name}.tar.xz";
2015-02-06 20:51:39 +00:00
sha256 = "1mpa4m3vchqa0rm1zw0fgby3yhp35k4y6jlqdd02difm3dhk28l5";
2014-10-24 23:35:33 +00:00
};
buildInputs = [ pkgconfig json_c hidapi ];
meta = with stdenv.lib; {
homepage = https://developers.yubico.com/libu2f-host;
description = "a C library and command-line tool thati mplements the host-side of the U2F protocol";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}