mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: r-openssl: Use openssl instead of libressl.
* gnu/packages/statistics.scm (r-openssl)[arguments]: Add phase to disable versioned linking. [inputs]: Replace libressl with openssl.
This commit is contained in:
parent
2d666bd6c0
commit
d4e0534c4f
1 changed files with 11 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2015 Vicente Vera Parra <vicentemvp@gmail.com>
|
;;; Copyright © 2015 Vicente Vera Parra <vicentemvp@gmail.com>
|
||||||
;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2016, 2017, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
@ -2387,8 +2387,17 @@ (define-public r-openssl
|
||||||
(base32
|
(base32
|
||||||
"0na3yficxg0hjql9pvz96f66yh4g5k2hfwcricb705z7f2pk5f23"))))
|
"0na3yficxg0hjql9pvz96f66yh4g5k2hfwcricb705z7f2pk5f23"))))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
'(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'do-not-use-versioned-linking
|
||||||
|
(lambda _
|
||||||
|
(substitute* "configure"
|
||||||
|
(("PKG_LIBS=\"\\$\\{PKG_LIBS_VERSIONED\\}\"")
|
||||||
|
"PKG_LIBS=\"${PKG_LIBS}\"")))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list libressl))
|
(list openssl))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config r-knitr))
|
(list pkg-config r-knitr))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Loading…
Reference in a new issue