biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / radsecproxy / default.nix
blob493dd6c0e835e9935b513d5e85f0c34444860f29
1 { lib, stdenv, fetchFromGitHub, openssl, autoreconfHook, nettle }:
3 stdenv.mkDerivation rec {
4   pname = "radsecproxy";
5   version = "1.9.3";
7   src = fetchFromGitHub {
8     owner = pname;
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-4w5aQIh3loHrxFGhWt6pW2jgj/JuqQSYmNsnAkEuKoI=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
15   buildInputs = [ openssl nettle ];
17   configureFlags = [
18      "--with-ssl=${openssl.dev}"
19      "--sysconfdir=/etc"
20      "--localstatedir=/var"
21   ];
23   meta = with lib; {
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;
29   };