gnu: r-gmp: Update to 0.7-2.

* gnu/packages/cran.scm (r-gmp): Update to 0.7-2.
[arguments]: Remove obsolete build phase.
[properties]: Tell updater that "gmp" is an extra input.
This commit is contained in:
Ricardo Wurmus 2023-07-10 23:30:41 +02:00
parent 2c04ca3de0
commit 64b18f3282
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -18630,20 +18630,17 @@ (define-public r-bigrquery
(define-public r-gmp
(package
(name "r-gmp")
(version "0.7-1")
(version "0.7-2")
(source
(origin
(method url-fetch)
(uri (cran-uri "gmp" version))
(sha256
(base32
"1djxhc4v874asmrj8qy054779wsq499f5f2wc6vmr40qab33v1x6"))))
"12rd0j3sawzipfz4xr3ikrxrjabpjp4s3y4ikvk16z8rhjs2i5bw"))))
(properties
'((updater-extra-inputs . ("gmp"))))
(build-system r-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'set-CC
(lambda _ (setenv "CC" "gcc") #t)))))
(inputs (list gmp))
(home-page "https://cran.r-project.org/web/packages/gmp")
(synopsis "Multiple precision arithmetic")