diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-28 09:12:56 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:49 +0100 |
| commit | 257b3cedc4bd77cbd905f8df2a929d1bd396e2e2 (patch) | |
| tree | 6645eb798ce0f96065fd0d31e03100516e51b39c | |
| parent | 82c73e7a27dd34c527abc222641f5e1af7ac52b3 (diff) | |
gnu: drawing: Switch to pyproject.
* gnu/packages/gnome.scm (drawing):
[arguments]<#:imported-modules, #:modules, #:phases>: Switch to
pyproject-build-system.
Change-Id: I223ec55b85c6729219721a045598f038f15d5e47
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/gnome.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 212b8e024bf..59b36763340 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4393,10 +4393,10 @@ engineering.") (arguments (list #:glib-or-gtk? #t - #:imported-modules `(,@%meson-build-system-modules - (guix build python-build-system)) + #:imported-modules (append %meson-build-system-modules + %pyproject-build-system-modules) #:modules '((guix build meson-build-system) - ((guix build python-build-system) #:prefix python:) + ((guix build pyproject-build-system) #:prefix py:) (guix build utils)) #:phases #~(modify-phases %standard-phases @@ -4407,7 +4407,7 @@ engineering.") (lambda* (#:key inputs outputs #:allow-other-keys) (wrap-program (search-input-file outputs "bin/drawing") `("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH") - ,(python:site-packages inputs outputs))) + ,(py:site-packages inputs outputs))) `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))))))) (native-inputs (list desktop-file-utils |
