2016-03-16 07:15:55 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, talloc
|
|
|
|
, openssl
|
|
|
|
, linkOpenssl? true
|
|
|
|
, openldap
|
|
|
|
, withLdap ? false
|
|
|
|
, sqlite
|
|
|
|
, withSqlite ? false
|
|
|
|
, libpcap
|
|
|
|
, withPcap ? true
|
|
|
|
, libcap
|
|
|
|
, withCap ? true
|
|
|
|
, libmemcached
|
|
|
|
, withMemcached ? false
|
|
|
|
, hiredis
|
|
|
|
, withRedis ? false
|
|
|
|
, libmysql
|
|
|
|
, withMysql ? false
|
|
|
|
, withJson ? false
|
|
|
|
, libyubikey
|
|
|
|
, withYubikey ? false
|
|
|
|
, collectd
|
|
|
|
, withCollectd ? false
|
|
|
|
}:
|
2016-03-13 07:22:27 +00:00
|
|
|
|
2016-03-16 07:15:55 +00:00
|
|
|
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;
|
2016-03-13 07:22:27 +00:00
|
|
|
|
2016-03-16 07:15:55 +00:00
|
|
|
## TODO: include windbind optionally (via samba?)
|
|
|
|
## TODO: include oracle optionally
|
|
|
|
## TODO: include ykclient optionally
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2016-03-13 07:22:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "freeradius-${version}";
|
|
|
|
version = "3.0.11";
|
|
|
|
|
2016-03-16 07:15:55 +00:00
|
|
|
buildInputs = [ autoreconfHook openssl talloc ]
|
|
|
|
++ optional withLdap [ openldap ]
|
|
|
|
++ optional withSqlite [ sqlite ]
|
|
|
|
++ optional withPcap [ libpcap ]
|
|
|
|
++ optional withCap [ libcap ]
|
|
|
|
++ optional withMemcached [ libmemcached ]
|
|
|
|
++ optional withRedis [ hiredis ]
|
|
|
|
++ optional withMysql [ libmysql ]
|
|
|
|
++ optional withJson [ pkgs."json-c" ]
|
|
|
|
++ optional withYubikey [ libyubikey ]
|
|
|
|
++ optional withCollectd [ collectd ];
|
|
|
|
|
|
|
|
# NOTE: are the --with-{lib}-lib-dir and --with-{lib}-include-dir necessary with buildInputs ?
|
2016-03-13 07:22:27 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2016-03-16 07:15:55 +00:00
|
|
|
] ++ optional (!linkOpenssl) "--with-openssl=no";
|
2016-03-13 07:22:27 +00:00
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
2016-03-16 07:15:55 +00:00
|
|
|
];
|
2016-03-13 07:22:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.freeradius.org/pub/freeradius/freeradius-server-${version}.tar.gz";
|
|
|
|
sha256 = "0naxw9b060rbp4409904j6nr2zwl6wbjrbq1839xrwhmaf8p4yxr";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://freeradius.org/;
|
|
|
|
description = "A modular, high performance free RADIUS suite";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-03-16 01:44:44 +00:00
|
|
|
maintainers = with maintainers; [ sheenobu ];
|
2016-03-13 07:22:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|