diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-02-15 17:20:35 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-02-15 18:10:05 +0100 |
commit | b88c907378d63c1f4fac2b871270cf128bbc24df (patch) | |
tree | 7878a589c2e9870613437ae4a58c506f0d8b7a3b | |
parent | 61440f9c64e64eb8dbe29b8b94decdf85ef4b605 (diff) | |
download | guix-b88c907378d63c1f4fac2b871270cf128bbc24df.tar.gz guix-b88c907378d63c1f4fac2b871270cf128bbc24df.zip |
gnu: stellarium: Support wayland.
* gnu/packages/astronomy.scm (stellarium)[build-system]: Switch to
qt-build-system.
[inputs]: Add qtwayland-5.
Change-Id: Ic4253bf278219b94e4577acf90ebff3a7c110d79
-rw-r--r-- | gnu/packages/astronomy.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index ec2f7b3297..700c1037f0 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -113,6 +113,7 @@ #:use-module (guix build-system meson) #:use-module ((guix build-system python) #:select (pypi-uri)) #:use-module (guix build-system pyproject) + #:use-module (guix build-system qt) #:use-module (guix download) #:use-module (guix gexp) #:use-module (guix git-download) @@ -7507,7 +7508,7 @@ deconvolution). Such post-processing is not performed by Stackistry.") (file-name (git-file-name name version)) (sha256 (base32 "1i00f63pmyy55mwagab4pv419agzmg2c4075hc8cgbhhhfr6gm8d")))) - (build-system cmake-build-system) + (build-system qt-build-system) ;; TODO: Complete documentation build and split into dedicated outputs. (arguments (list @@ -7542,6 +7543,7 @@ deconvolution). Such post-processing is not performed by Stackistry.") qtscript ; the last v5 left to rename qtserialport-5 qttranslations + qtwayland-5 qtwebengine-5 qxlsx-qt5 zlib)) |