summary refs log tree commit diff
path: root/pkgs/development/r-modules/generate-shell.nix
blob: 0ab3d6fb557f3c1505fd85d2a97cf97758d32922 (plain) (blame)
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
        jsonlite
        parallel
        BiocManager
      ];
    })
  ];
}