radsecproxy: init at 1.6.9
This commit is contained in:
parent
14f2e0cd36
commit
8bb57bce2a
30
pkgs/tools/networking/radsecproxy/default.nix
Normal file
30
pkgs/tools/networking/radsecproxy/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchurl, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "radsecproxy-${version}";
|
||||
version = "1.6.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://software.nordu.net/radsecproxy/radsecproxy-${version}.tar.xz";
|
||||
sha256 = "6f2c7030236c222782c9ac2c52778baa63540a1865b75a7a6d8c1280ce6ad816";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-ssl=${openssl.dev}"
|
||||
"--sysconfdir=/etc"
|
||||
"--localstatedir=/var"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://software.nordu.net/radsecproxy/;
|
||||
description = "A generic RADIUS proxy that supports both UDP and TLS (RadSec) RADIUS transports.";
|
||||
license = licenses.bsd;
|
||||
maintainers = with maintainers; [ sargon ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -4058,6 +4058,8 @@ with pkgs;
|
||||
|
||||
radeon-profile = libsForQt5.callPackage ../tools/misc/radeon-profile { };
|
||||
|
||||
radsecproxy = callPackage ../tools/networking/radsecproxy { };
|
||||
|
||||
radvd = callPackage ../tools/networking/radvd { };
|
||||
|
||||
rainbowstream = pythonPackages.rainbowstream;
|
||||
|
Loading…
Reference in New Issue
Block a user