freeradius: remove useless null asserts

This commit is contained in:
Artturin 2022-05-10 00:02:10 +03:00
parent ecc106108c
commit b86571f4f5

View file

@ -20,16 +20,7 @@
, withYubikey ? false, libyubikey
}:
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 -> libmysqlclient != null;
assert withYubikey -> libyubikey != null;
assert withCollectd -> collectd != null;
assert withRest -> curl != null && withJson;
assert withRest -> withJson;
stdenv.mkDerivation rec {
pname = "freeradius";