diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-28 09:52:23 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:50 +0100 |
| commit | 7c7025cdb90ebaf86acf72a5c82df55e491e3a53 (patch) | |
| tree | dbb87d1d3b53c711f53c4513f8c6bf84ffb19af8 | |
| parent | d62c74c5840e37ff0198ad524d0e522b00b93096 (diff) | |
gnu: apostrophe: Switch to pyproject.
* gnu/packages/gnome.scm (apostrophe):
[arguments]<#:imported-modules, #:modules, #:phases>: Switch to
pyproject-build-system.
Change-Id: Ic1751d52676270c8144bffc60436397f4bada496
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 61e4ac13d5a..e8b4ea5ed4c 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -13045,10 +13045,10 @@ GTK+. It integrates well with the GNOME desktop environment.") (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 @@ -13060,7 +13060,7 @@ GTK+. It integrates well with the GNOME desktop environment.") (lambda* (#:key inputs outputs #:allow-other-keys) (wrap-program (search-input-file outputs "bin/apostrophe") `("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH") - ,(python:site-packages inputs outputs))) + ,(py:site-packages inputs outputs))) `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))) `("PATH" prefix (,(dirname (search-input-file inputs |
