nushell: disable tests
This commit is contained in:
parent
08afcf25c8
commit
82a3f93960
1 changed files with 3 additions and 1 deletions
|
@ -15,7 +15,9 @@ in
|
|||
config = mkIf cfg.enable {
|
||||
programs.nushell = {
|
||||
enable = true;
|
||||
package = pkgs.nushell.override { additionalFeatures = p: p ++ [ "dataframe" ]; };
|
||||
package = (pkgs.nushell.overrideAttrs (_oldAttrs: {
|
||||
doCheck = false; # Skip tests, because they take forever to build using emulation
|
||||
})).override { additionalFeatures = p: p ++ [ "dataframe" ]; };
|
||||
configFile.source = ./config.nu;
|
||||
envFile.source = ./env.nu;
|
||||
|
||||
|
|
Loading…
Reference in a new issue