Add shell for R development

This commit is contained in:
Charlotte Van Petegem 2020-09-07 09:33:02 +02:00
parent 92b3e3f4c6
commit 4c6d7b7bd8

15
shells/r.nix Normal file
View file

@ -0,0 +1,15 @@
let
pkgs = import <nixpkgs> { };
in
pkgs.mkShell {
buildInputs = [
(pkgs.rWrapper.override {
packages = with pkgs.rPackages; [
base64enc
jsonlite
R6
rlang
];
})
];
}