diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-04-30 10:57:10 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-04-30 10:57:37 +0200 |
commit | 7e1d6bb247c617120e76ea922192f84830594386 (patch) | |
tree | 74ba266b30d3b976818f96e448127168660d572f | |
parent | 3b3c7ef1f74d15471da482ca9b3720020c9f85f1 (diff) | |
download | guix-7e1d6bb247c617120e76ea922192f84830594386.tar guix-7e1d6bb247c617120e76ea922192f84830594386.tar.gz |
gnu: r-ffbase: Fix build with R 4.3.0.
* gnu/packages/cran.scm (r-ffbase)[arguments]: Add phase 'r-compatibility.
-rw-r--r-- | gnu/packages/cran.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5e0c74aa44..bdb3603942 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5963,6 +5963,16 @@ in main memory.") (base32 "1dp6lblfq2j7r1b4b8ls47jlx8j27n88d5vp8w116lb8pa01zxmk")))) (build-system r-build-system) + (arguments + (list + #:phases + '(modify-phases %standard-phases + ;; R 4.3.0 removed the typedef for Sint, which used to be just int. + (add-after 'unpack 'r-compatibility + (lambda _ + (substitute* '("src/grouprunningcumsum.c" + "src/grouprunningcumsumindex.c") + (("\\bSint ") "int "))))))) (propagated-inputs (list r-bit r-fastmatch r-ff)) (home-page "https://github.com/edwindj/ffbase") |