summaryrefslogtreecommitdiffstats
path: root/pkgs/development/r-modules/default.nix
AgeCommit message (Collapse)Author
2021-01-23mpi: use mpi attribute consistently as the default MPI implementationsMarkus Kowalewski
Use the attribute mpi to provide a system wide default MPI implementation. The default is openmpi (as before). This now allows for overriding the MPI implentation by using the overlay mechanism. Build all packages with mpich instead of the default openmpi can now be achived like this: self: super: { mpi = super.mpich; } All derivations that have been using "mpi ? null" to provide optional building with MPI have been change in the following way to allow for optional builds with MPI: { ... , mpi , useMpi ? false }
2021-01-20Merge pull request #110050 from PhDyellow/master_plus_patches_3Peter Simons
r-modules: fix gert build
2021-01-19treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
2021-01-18Merge pull request #93590 from lblasc/r-packagesPeter Simons
R: remove qtbase.patch and fix few CRAN packages
2021-01-18r-modules: fix gert buildPhil Dyer
gert requires pkgs.libgit2 to build.
2021-01-18r-modules: fix clustermq and rzmq buildPhil Dyer
rzmq uses pkgconfig. clustermq now incorporates ZMQ libs directly, rather than using the rzmq package. clustermq now uses zeromq and pkgconfig. Both packages needed patchShebangs, due to pkgconfig.
2021-01-04Added suggested macOS fix and fixed data.table package.Tikhon Jelvis
`data.table` had a `postInstall` step to rename `data.table.so` to `datatable.so`, but after the package bump the file was already called `datatable.so` and `mv` command would fail.
2021-01-02r-modules: update cran and bioc packagesTikhon Jelvis
The last snapshot was 4 months ago (2020-08-19). I also found that I needed newer definitions when I was trying to fix the R arrow package. This update required a couple of manual changes: 1. Removing a few deleted packages from default.nix 2. Renaming the "assert" package to "r_assert" in generate-r-packages.R because "assert" is a keyword in Nix
2020-11-27Merge pull request #101451 from moritzschaefer/fix-r-mirror-pathSandro
fix package path for bioc server
2020-11-05R: remove qtbase.patch and fix few CRAN packagesLuka Blaskovic
2020-10-23Fixes missing configure scriptMoritz Schaefer
2020-10-23fix package path for bioc server ↵Moritz Schaefer
(http://mirrors.ustc.edu.cn/bioc/3.11/bioc/src/contrib/Archive/)
2020-08-20r-modules: bioc and cran updateJustin Bedo
2020-07-26Merge pull request #91288 from rnhmjoj/zeromqMichele Guerini Rocco
Remove old zeromq 3.x packages
2020-07-13rpackages.RcppParallel: Patch shebangcfhammill
Fixes hydra build error
2020-06-22rzmq: use default zeromqrnhmjoj
2020-05-14r-statmod: Add libiconv to buildInputsMatt Wittmann
2020-05-11Merge pull request #82504 from mcwitt/fix/r-mvtnormPeter Simons
r-mvtnorm: add libiconv to buildInputs
2020-04-26R: Update CRAN and bioconductor packagesAlex Branham
2020-04-17treewide: use blas and lapackMatthew Bauer
This makes packages use lapack and blas, which can wrap different BLAS/LAPACK implementations. treewide: cleanup from blas/lapack changes A few issues in the original treewide: - can’t assume blas64 is a bool - unused commented code
2020-04-08R: Update CRAN and bioconductor packagesAlex Branham
2020-03-13r-mvtnorm: add libiconv to buildInputsMatt Wittmann
Fixes build failure with `ld: library not found for -liconv`
2020-02-26rPackages.ggbio: patch away spelling mistakeEdward Tjörnhammar
2020-02-07r-modules/generic-builder: Add missing iconv library to fix build on darwin ↵tricktron
(#78965) Add missing iconv dependency to fix builds of several r-modules on darwin.
2020-01-28r-packages: updateMaximilian Bosch
This update was primarily done to update rPackages.V8 to 3.0 which doesn't depend on an ancient version of v8 anymore. Also dropped the `-lv8_libplatform` linker flag. It seems as this now part of `v8.so` as `v8_libplatform.so` doesn't exist anymore on recent v8 versions in nixpkgs, but the headers are still there and there aren't any "undefined reference to" errors while linking.
2020-01-23R: Update CRAN and bioconductor packagesAlex Branham
2020-01-01rgl: fix buildLinus Heckemann
It seems that the dev output of libGLU needs to be included explicitly for this to work. I've also moved the libraries from nativeBuildInputs to buildInputs to be more semantically correct (and maybe support cross compilation, not tested though).
2019-12-10Merge pull request #75021 from mnacamura/r-websocketPeter Simons
rPackages.websocket: fix build
2019-12-05rPackages.websocket: fix buildMitsuhiro Nakamura
2019-11-18treewide: Get rid of libGLU_combinedadisbladis
2019-11-01rPackages.glmnet: Add missing dependencyNick Partridge
Fixes the error: ld: library not found for -liconv
2019-10-31rPackages.ModelMetrics: fix darwin buildNick Partridge
This fixes the error: auc_.cpp:2:10: fatal error: 'omp.h' file not found #include <omp.h>
2019-10-10r-systemfonts: fix shebang of configure scriptPeter Simons
Closes https://github.com/NixOS/nixpkgs/pull/70813.
2019-10-10r-systemfonts: fix package dependenciesDylan Simon
2019-10-06r-data.table: add missing zlib dependency to fix the buildPeter Simons
2019-10-06R: Update CRAN and bioconductor packagesAlex Branham
2019-09-24Merge branch 'master' into staging-nextVladimír Čunát
2019-09-24Merge pull request #69333 from mnacamura/r-ucminfJörg Thalheim
r-ucminf: fix build on Darwin
2019-09-24Merge pull request #69330 from mnacamura/r-rfJörg Thalheim
r-randomForest: fix build on Darwin
2019-09-24Merge pull request #69332 from mnacamura/r-minqaJörg Thalheim
r-minqa: fix build on Darwin
2019-09-24r-ucminf: fix build on DarwinMitsuhiro Nakamura
2019-09-24r-minqa: fix build on DarwinMitsuhiro Nakamura
2019-09-24r-pan: fix build on DarwinMitsuhiro Nakamura
2019-09-24r-randomForest: fix build on DarwinMitsuhiro Nakamura
2019-09-22Re-Revert "Merge branch 'staging-next'"Vladimír Čunát
This reverts commit f8a8fc6c7c079de430fa528f688ddac781bcef16.
2019-09-21Revert "Merge branch 'staging-next'"Vladimír Čunát
This reverts commit 41af38f3728bd64b80721c44ed1fb019978cbc1b, reversing changes made to f0fec244ca380b9d3e617ee7b419c59758c8b0f1. Let's delay this. We have some serious regressions.
2019-09-09treewide: replace mysql.connector-c to libmysqlclientIzorkin
2019-09-08treewide: remove redundant quotesvolth
2019-09-02Fix broken builds for rgdal and sf R packagescfhammill
Builds were failing to include PROJ, depending on proj.dev appears to fix it.
2019-08-06Ensure sundialr builds on macos.Dominic Steinitz