1 { lib, stdenv, fetchFromGitHub, openssl, autoreconfHook, nettle }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-4w5aQIh3loHrxFGhWt6pW2jgj/JuqQSYmNsnAkEuKoI=";
14 nativeBuildInputs = [ autoreconfHook ];
15 buildInputs = [ openssl nettle ];
18 "--with-ssl=${openssl.dev}"
20 "--localstatedir=/var"
24 homepage = "https://radsecproxy.github.io/";
25 description = "Generic RADIUS proxy that supports both UDP and TLS (RadSec) RADIUS transports";
26 license = licenses.bsd3;
27 maintainers = with maintainers; [ sargon ];
28 platforms = with platforms; linux;