summaryrefslogtreecommitdiffstats
path: root/pkgs/development/r-modules/generate-shell.nix
blob: 66b51380277949109d86ce8767b4a31ec279973f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
with import ../../.. { };

stdenv.mkDerivation {
  name = "generate-r-packages-shell";

  buildCommand = "exit 1";

  buildInputs = [
    wget
    cacert
    nix
  ];

  nativeBuildInputs = [
    (rWrapper.override {
      packages = with rPackages; [
        data_table
        parallel
        BiocManager
        jsonlite
      ];
    })
  ];
}