mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
88 lines
2.2 KiB
Nix
88 lines
2.2 KiB
Nix
{ stdenv, fetchurl, autoreconfHook, talloc, finger_bsd, perl
|
|
, openssl
|
|
, linkOpenssl? true
|
|
, openldap
|
|
, withLdap ? true
|
|
, sqlite
|
|
, withSqlite ? true
|
|
, libpcap
|
|
, withPcap ? true
|
|
, libcap
|
|
, withCap ? true
|
|
, libmemcached
|
|
, withMemcached ? false
|
|
, hiredis
|
|
, withRedis ? false
|
|
, libmysql
|
|
, withMysql ? false
|
|
, json_c
|
|
, withJson ? false
|
|
, libyubikey
|
|
, withYubikey ? false
|
|
, collectd
|
|
, withCollectd ? false
|
|
}:
|
|
|
|
assert withSqlite -> sqlite != null;
|
|
assert withLdap -> openldap != null;
|
|
assert withPcap -> libpcap != null;
|
|
assert withCap -> libcap != null;
|
|
assert withMemcached -> libmemcached != null;
|
|
assert withRedis -> hiredis != null;
|
|
assert withMysql -> libmysql != null;
|
|
assert withYubikey -> libyubikey != null;
|
|
assert withCollectd -> collectd != null;
|
|
|
|
## TODO: include windbind optionally (via samba?)
|
|
## TODO: include oracle optionally
|
|
## TODO: include ykclient optionally
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "freeradius-${version}";
|
|
version = "3.0.12";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.freeradius.org/pub/freeradius/freeradius-server-${version}.tar.gz";
|
|
sha256 = "182xnb9pdsivlyfm471l90m37q9i04h7jadhkgm0ivvzrzpzcnja";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ openssl talloc finger_bsd perl ]
|
|
++ optional withLdap openldap
|
|
++ optional withSqlite sqlite
|
|
++ optional withPcap libpcap
|
|
++ optional withCap libcap
|
|
++ optional withMemcached libmemcached
|
|
++ optional withRedis hiredis
|
|
++ optional withMysql libmysql
|
|
++ optional withJson json_c
|
|
++ optional withYubikey libyubikey
|
|
++ optional withCollectd collectd;
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
] ++ optional (!linkOpenssl) "--with-openssl=no";
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/main/checkrad.in --replace "/usr/bin/finger" "${finger_bsd}/bin/finger"
|
|
'';
|
|
|
|
installFlags = [
|
|
"sysconfdir=\${out}/etc"
|
|
"localstatedir=\${TMPDIR}"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://freeradius.org/;
|
|
description = "A modular, high performance free RADIUS suite";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with maintainers; [ sheenobu ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
|
|
}
|
|
|