summary refs log tree commit diff
path: root/pkgs/development/libraries/libu2f-server/default.nix
blob: 5d7da127c2a929dd2426e87b78229f878bb3f541 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pkgconfig, json_c, openssl, check }:

stdenv.mkDerivation rec {
  name = "libu2f-server-1.0.1";

  src = fetchurl {
    url = "https://developers.yubico.com/libu2f-server/Releases/${name}.tar.xz";
    sha256 = "0vhzixz1s629qv9dpdj6b7fxfyxnr5j2vx2cq9q6v790a68ga656";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ json_c openssl check ];

  meta = with stdenv.lib; {
    homepage = https://developers.yubico.com/libu2f-server/;
    description = "A C library that implements the server-side of the U2F protocol";
    license = licenses.bsd2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ philandstuff ];
  };
}