mirror of
https://github.com/dwinkler1/fran.git
synced 2026-02-19 14:40:58 -05:00
30 lines
632 B
Nix
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"];};
|
|
})
|