guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b5f91bd821e2194b319f5ed571b084fbc209eae1
Author: Raven Hallsby <[email protected]>
AuthorDate: Sun Oct 19 13:57:00 2025 -0500
gnu: quickshell: Remove custom build & install phases.
* gnu/packages/wm.scm (quickshell): Remove custom phases.
Quickshell uses the cmake-build-system, whose build and install phases are
nearly identical to these custom phases. Reusing the standard cmake phases
also means we allow Guix to control the build parallelism.
Change-Id: Ia6f5da50165b1e9ce6b4443cbd64328c51f88222
Signed-off-by: Maxim Cournoyer <[email protected]>
---
gnu/packages/wm.scm | 2 --
1 file changed, 2 deletions(-)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 763e60d90d..1e5fa826e7 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1106,8 +1106,6 @@ your own layouts, widgets, and built-in commands.")
"-DDISTRIBUTOR_DEBUGINFO_AVAILABLE=NO")
#:phases
#~(modify-phases %standard-phases
- (replace 'build (lambda _ (invoke "cmake" "--build" ".")))
- (replace 'install (lambda _ (invoke "cmake" "--install" ".")))
(add-after 'install 'wrap-program
(lambda _
(wrap-program (string-append #$output "/bin/quickshell")