diff options
| author | Raven Hallsby <karl@hallsby.com> | 2025-10-19 13:57:00 -0500 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-11-28 17:43:44 +0900 |
| commit | b5f91bd821e2194b319f5ed571b084fbc209eae1 (patch) | |
| tree | 9a850f9e314c81fee279cd6f1fd61ab5c533c68d | |
| parent | c10540980444011e6481ac0a443efa82d54b9c97 (diff) | |
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 <maxim@guixotic.coop>
| -rw-r--r-- | gnu/packages/wm.scm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 763e60d90df..1e5fa826e72 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") |
