Skip to content

Commit

Permalink
add: rstudio
Browse files Browse the repository at this point in the history
  • Loading branch information
artur-sannikov committed Oct 18, 2024
1 parent d1a7329 commit 7d9be43
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,26 @@ let
})
];

R = with pkgs; [
(rWrapper.override {
packages = [
rpkgs
git_archive_pkgs
];
})
];

rstudio = with pkgs; [
(rstudioWrapper.override {
packages = [
rpkgs
git_archive_pkgs
];
})
];

system_packages = builtins.attrValues {
inherit (pkgs)
R
glibcLocales
nix
;
Expand All @@ -144,8 +161,8 @@ pkgs.mkShell {
LC_MEASUREMENT = "en_US.UTF-8";

buildInputs = [
git_archive_pkgs
rpkgs
R
rstudio
system_packages
];

Expand Down

0 comments on commit 7d9be43

Please sign in to comment.