me
/
guix
Archived
1
0
Fork 0

gnu: qgis: Fix some plugins.

* gnu/packages/geo.scm (qgis)[arguments]: Add a 'wrap-gis' phase to set the
  environment variables required by some plugins.
master
Guillaume Le Vaillant 2020-04-04 19:57:50 +02:00
parent 3cea550788
commit 5ef1b17578
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 16 additions and 0 deletions

View File

@ -1933,6 +1933,22 @@ growing set of geoscientific methods.")
(add-after 'wrap-python 'wrap-qt
(lambda* (#:key outputs #:allow-other-keys)
(wrap-qt-program (assoc-ref outputs "out") "qgis")
#t))
(add-after 'wrap-qt 'wrap-gis
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(saga (string-append (assoc-ref inputs "saga") "/bin"))
(grass-version ,(package-version grass))
(grass-majorminor (string-join
(list-head
(string-split grass-version #\.) 2)
""))
(grass (string-append (assoc-ref inputs "grass")
"/grass" grass-majorminor)))
(wrap-program (string-append out "/bin/qgis")
`("PATH" ":" prefix (,saga))
`("QGIS_PREFIX_PATH" = (,out))
`("GISBASE" = (,grass))))
#t)))))
(inputs
`(("exiv2" ,exiv2)