nushell: re-enable tests on darwin (#400302)

Changed files
+5 -2
pkgs
shells
nushell
+5 -2
pkgs/shells/nushell/default.nix
···
testers,
nushell,
nix-update-script,
+
curlMinimal,
}:
let
···
buildNoDefaultFeatures = !withDefaultFeatures;
buildFeatures = additionalFeatures [ ];
-
doCheck = !stdenv.hostPlatform.isDarwin; # Skip checks on darwin. Failing tests since 0.96.0
-
checkPhase = ''
runHook preCheck
(
···
)
runHook postCheck
'';
+
+
checkInputs = lib.optionals stdenv.hostPlatform.isDarwin [
+
curlMinimal
+
];
passthru = {
shellPath = "/bin/nu";