Skip to content

Commit c3c412f

Browse files
committed
guix: move inputs to right places
1 parent 09b4e75 commit c3c412f

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

quickshell.scm

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
(define-module (quickshell)
22
#:use-module ((guix licenses) #:prefix license:)
3+
#:use-module (gnu packages bash)
34
#:use-module (gnu packages cpp)
45
#:use-module (gnu packages freedesktop)
56
#:use-module (gnu packages gcc)
@@ -30,15 +31,15 @@
3031
#:select? (or (git-predicate (current-source-directory))
3132
(const #t))))
3233
(build-system cmake-build-system)
33-
(propagated-inputs (list qtbase qtdeclarative qtsvg))
34+
(propagated-inputs (list qtsvg))
3435
(native-inputs (list ninja
3536
gcc-14
3637
pkg-config
3738
qtshadertools
38-
spirv-tools
39-
wayland-protocols
40-
cli11))
41-
(inputs (list jemalloc
39+
spirv-tools))
40+
(inputs (list bash-minimal
41+
cli11
42+
jemalloc
4243
libdrm
4344
libxcb
4445
libxkbcommon
@@ -50,7 +51,8 @@
5051
qtdeclarative
5152
qtwayland
5253
vulkan-headers
53-
wayland))
54+
wayland
55+
wayland-protocols))
5456
(arguments
5557
(list #:tests? #f
5658
#:configure-flags

0 commit comments

Comments
 (0)