2020-06-18 12:44:17 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, json_c, openssl, check, file, help2man, which, gengetopt }:
|
2015-05-03 15:29:42 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-07 18:46:39 +01:00
|
|
|
name = "libu2f-server-1.1.0";
|
2015-05-03 15:29:42 +01:00
|
|
|
src = fetchurl {
|
2015-09-23 07:25:45 +01:00
|
|
|
url = "https://developers.yubico.com/libu2f-server/Releases/${name}.tar.xz";
|
2018-05-07 18:46:39 +01:00
|
|
|
sha256 = "0xx296nmmqa57w0v5p2kasl5zr1ms2gh6qi4lhv6xvzbmjp3rkcd";
|
2015-05-03 15:29:42 +01:00
|
|
|
};
|
|
|
|
|
2020-06-18 12:44:17 +01:00
|
|
|
patches = [
|
|
|
|
# remove after updating to next release
|
|
|
|
(fetchpatch {
|
|
|
|
name = "json-c-0.14-support.patch";
|
|
|
|
url = "https://github.com/Yubico/libu2f-server/commit/f7c4983b31909299c47bf9b2627c84b6bfe225de.patch";
|
|
|
|
sha256 = "10q66w3paii1yhfdmjskpip078fk9p3sjllbqx1yx71qbjki55b0";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2015-09-23 07:25:45 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-05-07 18:46:39 +01:00
|
|
|
buildInputs = [ json_c openssl check file help2man which gengetopt ];
|
2015-05-03 15:29:42 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://developers.yubico.com/libu2f-server/";
|
2015-05-03 15:29:42 +01:00
|
|
|
description = "A C library that implements the server-side of the U2F protocol";
|
|
|
|
license = licenses.bsd2;
|
2016-06-18 09:39:44 +01:00
|
|
|
platforms = platforms.linux;
|
2015-05-03 15:29:42 +01:00
|
|
|
maintainers = with maintainers; [ philandstuff ];
|
|
|
|
};
|
|
|
|
}
|