fran/packages/f/fwildclusterboot.nix
copilot-swe-agent[bot] c365b44ff2 Refactor packages into modular structure under packages/ directory
Co-authored-by: dwinkler1 <22460147+dwinkler1@users.noreply.github.com>
2026-01-19 05:06:39 +00:00

30 lines
632 B
Nix

{
final,
prev,
fetchfromGitHubJSONFile,
versionsDir,
}:
(prev.rPackages.buildRPackage {
name = "fwildclusterboot";
src = fetchfromGitHubJSONFile "${versionsDir}/fwildclusterboot.json";
propagatedBuildInputs = builtins.attrValues {
inherit
(prev.rPackages)
collapse
dqrng
dreamerr
Formula
generics
gtools
JuliaConnectoR
Matrix
Rcpp
rlang
RcppArmadillo
RcppEigen
;
inherit (final.extraRPackages) summclust;
};
}).overrideAttrs (old: {
passthru = (old.passthru or {}) // {juliaPackages = ["WildBootTests" "StableRNGs"];};
})