From 3c2f3dff8d1c3c9825223496c119479b04011ce9 Mon Sep 17 00:00:00 2001 From: Artturin Date: Tue, 10 May 2022 00:34:16 +0300 Subject: [PATCH] gloox: remove useless nulls --- pkgs/development/libraries/gloox/default.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/gloox/default.nix b/pkgs/development/libraries/gloox/default.nix index 82429add261..f50704bcb65 100644 --- a/pkgs/development/libraries/gloox/default.nix +++ b/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{