gss: Remove redundant nulls

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

toonn 7d1c3145 c0a94253

+2 -4
+2 -4
pkgs/development/libraries/gss/default.nix
··· 1 1 { lib, stdenv, fetchurl 2 - , withShishi ? !stdenv.isDarwin, shishi ? null 2 + , withShishi ? !stdenv.isDarwin, shishi 3 3 }: 4 - 5 - assert withShishi -> shishi != null; 6 4 7 5 stdenv.mkDerivation rec { 8 6 name = "gss-1.0.3"; ··· 15 13 buildInputs = lib.optional withShishi shishi; 16 14 17 15 configureFlags = [ 18 - "--${if withShishi != null then "enable" else "disable"}-kerberos5" 16 + "--${if withShishi then "enable" else "disable"}-kerberos5" 19 17 ]; 20 18 21 19 doCheck = true;