r-modules: use HTTPS, allow passing args from generated set, use MRAN

This commit is contained in:
Nikolay Amiantov
2015-11-25 11:39:28 +01:00
committed by Peter Simons
parent 5ee5b5ba82
commit 287f99bada
4 changed files with 53 additions and 134 deletions
@@ -0,0 +1,16 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "generate-r-packages-shell";
buildCommand = "exit 1";
nativeBuildInputs = [
(rWrapper.override {
packages = with rPackages; [
data_table
parallel
];
})
];
}