radsecproxy: 1.9.3 -> 1.11.1 (#384455)

This commit is contained in:
Arne Keller
2025-02-26 08:49:15 +01:00
committed by GitHub
+11 -10
View File
@@ -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;
};
}