repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
duplicity: 3.0.3.1 -> 3.0.3.2 (#364143)
[NixPkgs.git]
/
pkgs
/
development
/
r-modules
/
generate-shell.nix
blob
66b51380277949109d86ce8767b4a31ec279973f
1
with import ../../.. { };
2
3
stdenv.mkDerivation {
4
name = "generate-r-packages-shell";
5
6
buildCommand = "exit 1";
7
8
buildInputs = [
9
wget
10
cacert
11
nix
12
];
13
14
nativeBuildInputs = [
15
(rWrapper.override {
16
packages = with rPackages; [
17
data_table
18
parallel
19
BiocManager
20
jsonlite
21
];
22
})
23
];
24
}