lol

lib.makeSearchPath: allow null in search path

This makes things match ‘buildInputs’ where inputs are allowed to be
null.

+1 -1
+1 -1
lib/strings.nix
··· 82 => "//bin" 83 */ 84 makeSearchPath = subDir: packages: 85 - concatStringsSep ":" (map (path: path + "/" + subDir) packages); 86 87 /* Construct a Unix-style search path, using given package output. 88 If no output is found, fallback to `.out` and then to the default.
··· 82 => "//bin" 83 */ 84 makeSearchPath = subDir: packages: 85 + concatStringsSep ":" (map (path: path + "/" + subDir) (builtins.filter (x: x != null) packages)); 86 87 /* Construct a Unix-style search path, using given package output. 88 If no output is found, fallback to `.out` and then to the default.