nixpkgs/pkgs/development/r-modules/generate-shell.nix
Phil Dyer 8b565e95a4 rPackages: generate-shell.nix works with --pure
generate-R-packages.R fails without these changes.

Without `cacert`, all wget/curl calls will fail
with an error about no valid certificates.

Without `nix`, calling `nix-hash` fails.

An impure nix-shell can get away with not adding
these if the system NIXPKGS version is the same
as the version of NIXPKGS used
with `nix-shell generate-shell.nix`
2021-09-15 11:12:17 +10:00

24 lines
330 B
Nix

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
];
})
];
}