Add shell for R development
This commit is contained in:
parent
92b3e3f4c6
commit
4c6d7b7bd8
1 changed files with 15 additions and 0 deletions
15
shells/r.nix
Normal file
15
shells/r.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
let
|
||||||
|
pkgs = import <nixpkgs> { };
|
||||||
|
in
|
||||||
|
pkgs.mkShell {
|
||||||
|
buildInputs = [
|
||||||
|
(pkgs.rWrapper.override {
|
||||||
|
packages = with pkgs.rPackages; [
|
||||||
|
base64enc
|
||||||
|
jsonlite
|
||||||
|
R6
|
||||||
|
rlang
|
||||||
|
];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue