guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: qgis: Allow building on more architectures.


From: guix-commits
Subject: 01/03: gnu: qgis: Allow building on more architectures.
Date: Tue, 13 Jun 2023 02:47:43 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 0b2d33af03a7bfca0b58dcd5c8d551eb6927cf6b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jun 13 09:09:08 2023 +0300

    gnu: qgis: Allow building on more architectures.
    
    * gnu/packages/geo.scm (qgis)[native-inputs]: Only build with shellcheck
    on supported platforms.
---
 gnu/packages/geo.scm | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 6ad3c87ff1..65344bcac2 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -2786,17 +2786,20 @@ growing set of geoscientific methods.")
            sqlite
            (list zstd "lib")))
     (native-inputs
-     (list bison
-           flex
-           perl
-           perl-yaml-tiny
-           pkg-config
-           python-mock
-           python-nose2
-           python-pyqt-builder
-           qttools-5
-           shellcheck
-           xorg-server-for-tests))
+     (append
+       (list bison
+             flex
+             perl
+             perl-yaml-tiny
+             pkg-config
+             python-mock
+             python-nose2
+             python-pyqt-builder
+             qttools-5)
+       (if (supported-package? shellcheck)
+         (list shellcheck)
+         '())
+       (list xorg-server-for-tests)))
     (home-page "https://qgis.org";)
     (synopsis "Geographical information system")
     (description "QGIS is an easy to use Geographical Information



reply via email to

[Prev in Thread] Current Thread [Next in Thread]