diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-28 09:36:33 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:49 +0100 |
| commit | ffafd6d6cfe2f8dfb195e96624f0d81a3b9e230a (patch) | |
| tree | 8895ec18a25c5a95aeb0f69b1af8fc4be2ad53b6 | |
| parent | 65a143e0f2bef63b7ddb070864e947299081d004 (diff) | |
gnu: lollypop: Switch to pyproject.
* gnu/packages/gnome.scm (lollypop):
[arguments]<#:imported-modules, #:modules, #:phases>: Switch to
pyproject-build-system.
Change-Id: If3820beee0a79eb50a2ddd04fc8be2cf408f3752
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 f0f7860ef72..df7d3f8ede8 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11634,10 +11634,10 @@ views can be printed as PDF or PostScript files, or exported to HTML.") (base32 "15bpg217vqbnspnls5mjg05424i6c9wd6g9ryr3h96lbgg90l93s")))) (build-system meson-build-system) (arguments - (list #:imported-modules `(,@%meson-build-system-modules - (guix build python-build-system)) + (list #: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)) #:glib-or-gtk? #t #:phases @@ -11651,7 +11651,7 @@ views can be printed as PDF or PostScript files, or exported to HTML.") (list "GI_TYPELIB_PATH" ":" 'prefix (list (getenv "GI_TYPELIB_PATH")))))) (add-after 'install 'wrap-python - (assoc-ref python:%standard-phases 'wrap))))) + (assoc-ref py:%standard-phases 'wrap))))) (native-inputs (list gettext-minimal `(,glib "bin") ; For glib-compile-resources |
