diff --git a/pkgs/by-name/ra/radsecproxy/package.nix b/pkgs/by-name/ra/radsecproxy/package.nix index a6b0b40cc141..6e71cd3ff315 100644 --- a/pkgs/by-name/ra/radsecproxy/package.nix +++ b/pkgs/by-name/ra/radsecproxy/package.nix @@ -9,32 +9,33 @@ stdenv.mkDerivation rec { pname = "radsecproxy"; - version = "1.9.3"; + version = "1.11.1"; src = fetchFromGitHub { - owner = pname; - repo = pname; - rev = version; - sha256 = "sha256-4w5aQIh3loHrxFGhWt6pW2jgj/JuqQSYmNsnAkEuKoI="; + owner = "radsecproxy"; + repo = "radsecproxy"; + tag = version; + hash = "sha256-2+NDcz2RGRa30+XXS/PT5rjjKJYEnibYY3mVWjDv7Jk="; }; nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ openssl nettle ]; configureFlags = [ - "--with-ssl=${openssl.dev}" + "--with-openssl=${openssl.dev}" "--sysconfdir=/etc" "--localstatedir=/var" ]; - meta = with lib; { + meta = { homepage = "https://radsecproxy.github.io/"; description = "Generic RADIUS proxy that supports both UDP and TLS (RadSec) RADIUS transports"; - license = licenses.bsd3; - maintainers = with maintainers; [ sargon ]; - platforms = with platforms; linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sargon ]; + platforms = with lib.platforms; linux; }; }