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

22 lines
669 B
Nix
Raw Normal View History

2015-09-23 06:25:45 +00:00
{ stdenv, fetchurl, pkgconfig, json_c, openssl, check }:
stdenv.mkDerivation rec {
2015-09-23 06:25:45 +00:00
name = "libu2f-server-1.0.1";
src = fetchurl {
2015-09-23 06:25:45 +00:00
url = "https://developers.yubico.com/libu2f-server/Releases/${name}.tar.xz";
sha256 = "0vhzixz1s629qv9dpdj6b7fxfyxnr5j2vx2cq9q6v790a68ga656";
};
2015-09-23 06:25:45 +00:00
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 ];
};
}