gloox: remove useless nulls

This commit is contained in:
Artturin 2022-05-10 00:34:16 +03:00
parent 8e3e02b015
commit 3c2f3dff8d

View file

@ -1,13 +1,9 @@
{ lib, stdenv, fetchurl
, zlibSupport ? true, zlib ? null
, sslSupport ? true, openssl ? null
, idnSupport ? true, libidn ? null
, zlibSupport ? true, zlib
, sslSupport ? true, openssl
, idnSupport ? true, libidn
}:
assert zlibSupport -> zlib != null;
assert sslSupport -> openssl != null;
assert idnSupport -> libidn != null;
with lib;
stdenv.mkDerivation rec{