all-packages.nix: move all R-related attributes into one place
This commit is contained in:
parent
0d264c1761
commit
834679ddab
1 changed files with 8 additions and 10 deletions
|
@ -6428,17 +6428,20 @@ let
|
||||||
|
|
||||||
### DEVELOPMENT / R MODULES
|
### DEVELOPMENT / R MODULES
|
||||||
|
|
||||||
buildRPackage = import ../development/r-modules/generic R;
|
R = callPackage ../applications/science/math/R {
|
||||||
|
inherit (xlibs) libX11 libXt;
|
||||||
|
texLive = texLiveAggregationFun { paths = [ texLive texLiveExtra ]; };
|
||||||
|
};
|
||||||
|
|
||||||
|
rWrapper = callPackage ../development/r-modules/generic/wrapper.nix {
|
||||||
|
packages = [];
|
||||||
|
};
|
||||||
|
|
||||||
rPackages = recurseIntoAttrs (import ./r-packages.nix {
|
rPackages = recurseIntoAttrs (import ./r-packages.nix {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
overrides = (config.rPackageOverrides or (p: {})) pkgs;
|
overrides = (config.rPackageOverrides or (p: {})) pkgs;
|
||||||
});
|
});
|
||||||
|
|
||||||
rWrapper = callPackage ../development/r-modules/generic/wrapper.nix {
|
|
||||||
packages = [];
|
|
||||||
};
|
|
||||||
|
|
||||||
### SERVERS
|
### SERVERS
|
||||||
|
|
||||||
rdf4store = callPackage ../servers/http/4store { };
|
rdf4store = callPackage ../servers/http/4store { };
|
||||||
|
@ -10450,11 +10453,6 @@ let
|
||||||
inherit (gnome) libglade gtksourceview;
|
inherit (gnome) libglade gtksourceview;
|
||||||
};
|
};
|
||||||
|
|
||||||
R = callPackage ../applications/science/math/R {
|
|
||||||
inherit (xlibs) libX11 libXt;
|
|
||||||
texLive = texLiveAggregationFun { paths = [ texLive texLiveExtra ]; };
|
|
||||||
};
|
|
||||||
|
|
||||||
singular = callPackage ../applications/science/math/singular {};
|
singular = callPackage ../applications/science/math/singular {};
|
||||||
|
|
||||||
scilab = callPackage ../applications/science/math/scilab {
|
scilab = callPackage ../applications/science/math/scilab {
|
||||||
|
|
Loading…
Reference in a new issue