nixpkgs/pkgs/by-name/ra/radsecproxy/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
782 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, openssl, autoreconfHook, nettle }:
2017-09-22 13:08:19 +00:00
stdenv.mkDerivation rec {
2019-07-29 20:17:04 +00:00
pname = "radsecproxy";
2023-05-03 17:28:30 +00:00
version = "1.9.3";
2017-09-22 13:08:19 +00:00
2019-07-29 20:17:04 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2023-05-03 17:28:30 +00:00
sha256 = "sha256-4w5aQIh3loHrxFGhWt6pW2jgj/JuqQSYmNsnAkEuKoI=";
2017-09-22 13:08:19 +00:00
};
2019-07-29 20:17:04 +00:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ openssl nettle ];
2017-09-22 13:08:19 +00:00
configureFlags = [
"--with-ssl=${openssl.dev}"
"--sysconfdir=/etc"
"--localstatedir=/var"
];
meta = with lib; {
homepage = "https://radsecproxy.github.io/";
description = "Generic RADIUS proxy that supports both UDP and TLS (RadSec) RADIUS transports";
2017-09-23 13:37:28 +00:00
license = licenses.bsd3;
2017-09-22 13:08:19 +00:00
maintainers = with maintainers; [ sargon ];
platforms = with platforms; linux;
};
}