summary refs log blame commit diff
path: root/pkgs/development/r-modules/generate-shell.nix
blob: 126ab7422925c018bc0c8886eb335acc58f7365d (plain) (tree)
1
2
3
4
5
6
7
8
                        





                                     
                         








                                  
with import ../../.. {};

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

  buildCommand = "exit 1";

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