Compare commits

...

3 commits

Author SHA1 Message Date
22db18beaa
Change inheritance of summclust to franPackages 2026-06-13 09:23:33 +10:00
88cff8c2f6
Update flake.nix 2026-06-13 09:22:06 +10:00
161328eeda
Change R packages reference in flake.nix 2026-06-13 09:20:42 +10:00
2 changed files with 3 additions and 3 deletions

View file

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

View file

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