about summary refs log tree commit diff
path: root/pkgs/shells/nushell
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2021-05-10 09:45:56 +0900
committerRaphael Megzari <raphael@megzari.com>2021-05-12 15:23:07 +0900
commit4d8dd0afd2d5a35acb5e34c5c7b1674b74173d87 (patch)
tree4ff7ad5e5dffaeef3778ee4897b3d418f96a7c4f /pkgs/shells/nushell
parenta931f7082426fc727bb2169ed93b2dee1da762a5 (diff)
nushell: mark tests broken on darwin
Diffstat (limited to 'pkgs/shells/nushell')
-rw-r--r--pkgs/shells/nushell/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix
index 24cb26324473e..7d4b04d3c94b0 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -38,6 +38,11 @@ rustPlatform.buildRustPackage rec {
 
   cargoBuildFlags = lib.optional withStableFeatures "--features stable";
 
+  # TODO investigate why tests are broken on darwin
+  # failures show that tests try to write to paths
+  # outside of TMPDIR
+  doCheck = ! stdenv.isDarwin;
+
   checkPhase = ''
     runHook preCheck
     echo "Running cargo test"