mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
24 lines
347 B
Nix
24 lines
347 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
|
|
jsonlite
|
|
];
|
|
})
|
|
];
|
|
}
|