mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: r-sf: Use proj instead of proj.4.
This addresses segfaults while loading vector GIS data from a file. * gnu/packages/cran.scm (r-sf)[inputs]: Replace proj.4 with proj, and add sqlite. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
3e072a59be
commit
ae6a61d731
1 changed files with 4 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
|||
;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
|
||||
;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
|
||||
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||
;;; Copyright © 2019, 2020 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||
;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de>
|
||||
;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
|
||||
|
@ -90,6 +90,7 @@ (define-module (gnu packages cran)
|
|||
#:use-module (gnu packages pulseaudio) ;libsndfile
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages sqlite)
|
||||
#:use-module (gnu packages statistics)
|
||||
#:use-module (gnu packages tcl)
|
||||
#:use-module (gnu packages tls)
|
||||
|
@ -13957,7 +13958,8 @@ (define-public r-sf
|
|||
(inputs
|
||||
`(("gdal" ,gdal)
|
||||
("geos" ,geos)
|
||||
("proj" ,proj.4)
|
||||
("proj" ,proj)
|
||||
("sqlite" ,sqlite)
|
||||
("zlib" ,zlib)))
|
||||
(propagated-inputs
|
||||
`(("r-classint" ,r-classint)
|
||||
|
|
Loading…
Reference in a new issue