Compare commits

..

No commits in common. "22db18beaa8f7a984a36b6405f54c536c589d5ce" and "da09626e4dd8f0f57078b3a04e0443a8c20defa1" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -59,7 +59,7 @@
in { in {
default = mkR { default = mkR {
inherit pkgs; inherit pkgs;
packages = builtins.attrValues pkgs.franPackages; packages = builtins.attrValues pkgs.extraRPackages;
}; };
franUpdate = pkgs.writeShellScriptBin "fran-update" (import ./versions pkgs); franUpdate = pkgs.writeShellScriptBin "fran-update" (import ./versions pkgs);
} }
@ -94,7 +94,7 @@
}; };
rEnv = mkR { rEnv = mkR {
inherit pkgs; inherit pkgs;
packages = builtins.attrValues pkgs.franPackages; packages = builtins.attrValues pkgs.extraRPackages;
}; };
in { in {
test-script = pkgs.runCommand "test-script" {} '' test-script = pkgs.runCommand "test-script" {} ''

View file

@ -23,7 +23,7 @@
RcppArmadillo RcppArmadillo
RcppEigen RcppEigen
; ;
inherit (final.franPackages) summclust; inherit (final.extraRPackages) summclust;
}; };
}).overrideAttrs (old: { }).overrideAttrs (old: {
passthru = (old.passthru or {}) // {juliaPackages = ["WildBootTests" "StableRNGs"];}; passthru = (old.passthru or {}) // {juliaPackages = ["WildBootTests" "StableRNGs"];};