gloox: remove useless nulls

main
Artturin 2 years ago
parent 8e3e02b015
commit 3c2f3dff8d
  1. 10
      pkgs/development/libraries/gloox/default.nix

@ -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{

Loading…
Cancel
Save