summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-01-28 10:13:14 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:50 +0100
commitc67217080cc2186bcfbbc3d4c081ade461688e51 (patch)
tree229c0cccdfb84acc6baa5b6b188dac763b274e2c /gnu
parent243e5628bd3541f4782929092fb0e50b3ae73012 (diff)
gnu: xwayland-run: Switch to pyproject.
* gnu/packages/xorg.scm (xwayland-run): [arguments]<#:imported-modules, #:modules, #:phases>: Switch to pyproject-build-system. Change-Id: I410b5b57fd4357e85047ceb905665dd715c20442 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/xorg.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 0cfa552b277..a08ef345259 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -7153,21 +7153,20 @@ the server and cleaning up before returning the exit status of the command.")
(list
#:imported-modules
(append %meson-build-system-modules
- %python-build-system-modules)
+ %pyproject-build-system-modules)
#:modules
'((guix build utils)
(guix build meson-build-system)
- ((guix build python-build-system) #:prefix python:))
+ ((guix build pyproject-build-system) #:prefix py:))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'enable-bytecode-determinism
- (assoc-ref python:%standard-phases 'enable-bytecode-determinism))
+ (assoc-ref py:%standard-phases 'enable-bytecode-determinism))
(add-after 'install 'python-install
(lambda args
(for-each
(lambda (phase)
- (apply (assoc-ref python:%standard-phases phase)
- args))
+ (apply (assoc-ref py:%standard-phases phase) args))
'(add-install-to-pythonpath
add-install-to-path
wrap))))