From cf567da3711e06a60c95e9199dc474a62a2636a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Kupcsik?= Date: Mon, 3 Jun 2024 23:27:42 +0200 Subject: [PATCH] rPackages.covidsymptom: fix build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As of May 2024, there will be no more data updates. https://github.com/hugofitipaldi/covidsymptom/?tab=readme-ov-file#update-data The data included in the package are final, so I removed the update script, which was breaking the nix build. Co-authored-by: Justin Bedő --- pkgs/development/r-modules/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix index 5c8f3acdbddc..f0f2fe8f9708 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -1411,6 +1411,10 @@ let ]; }); + covidsymptom = old.covidsymptom.overrideAttrs (attrs: { + preConfigure = "rm R/covidsymptomdata.R"; + }); + cubature = old.cubature.overrideAttrs (attrs: { enableParallelBuilding = false; });