nixpkgs/pkgs/development/r-modules/generate-shell.nix
Will Dietz 2f303bc10e R/generate-shell: Use R from current tree, fix missing wget dep.
Without this change, the 'R' version used might be the wrong
one which changes the package lists used.

Fixes #19530.
2017-02-23 07:46:20 -06:00

18 lines
285 B
Nix

with import ../../.. {};
stdenv.mkDerivation {
name = "generate-r-packages-shell";
buildCommand = "exit 1";
buildInputs = [ wget ];
nativeBuildInputs = [
(rWrapper.override {
packages = with rPackages; [
data_table
parallel
];
})
];
}