Skip to content

Commit

Permalink
shell: drop withR / rstudio
Browse files Browse the repository at this point in the history
  • Loading branch information
deepfire committed Nov 30, 2021
1 parent f0525f8 commit 78bfdb7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
1 change: 0 additions & 1 deletion nix/custom-config.nix
@@ -1,6 +1,5 @@
self: {
withHoogle = true;
withR = false;
localCluster = {
cacheDir = "${self.localCluster.stateDir}/.cache";
stateDir = "run/current";
Expand Down
9 changes: 0 additions & 9 deletions shell.nix
Expand Up @@ -9,7 +9,6 @@ in
, autoStartCluster ? defaultCustomConfig.localCluster.autoStartCluster
, autoStartClusterArgs ? ""
, workbenchDevMode ? defaultCustomConfig.localCluster.workbenchDevMode
, withR ? false
, customConfig ? {
inherit withHoogle;
localCluster = {
Expand Down Expand Up @@ -63,10 +62,6 @@ let
workbench = pkgs.callPackage ./nix/workbench { inherit useCabalRun; };
};

rstudio = pkgs.rstudioWrapper.override {
packages = with pkgs.rPackages; [ car dplyr ggplot2 reshape2 ];
};

shell =
let cluster = mkCluster { useCabalRun = true; };
in cardanoNodeProject.shellFor {
Expand Down Expand Up @@ -107,10 +102,6 @@ let
[
cluster.workbench.workbench
]
++ lib.optionals withR
[
rstudio
]
## Local cluster not available on Darwin,
## because psmisc fails to build on Big Sur.
++ lib.optionals (!stdenv.isDarwin)
Expand Down

0 comments on commit 78bfdb7

Please sign in to comment.