Hi,
I have two issues related to using R with nix:
- Fixing the CRAN-mirror
- a `default.nix`-file for an R-package.
Fixing the CRAN-mirror
----------------------
Currently I have in my `.nixpkgs/config.nix` an entry with
rToolsEnv = pkgs.buildEnv {
name = "rTools";
paths = with rPackages; [
devtools
ggplot2
];
};
and I am installing it with `nix-env -i rTools`
Could I somehow fix the CRAN-mirror to use eg. with
`cranMirror = "http://stat.ethz.ch/CRAN/src/contrib/"`
default.nix
-----------
I'm looking for an example default.nix file, which I can put into my R-package
directory; could someone suggest me a common workflow for developing the
R-package?
Thanks, Michel
_______________________________________________
nix-dev mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-dev