From d695a63ec9feac903ecf49e8d993df357d4837f9 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 11 Jan 2022 00:11:14 +0100 Subject: gnu: authenticator: Remove input labels. * gnu/packages/gnome.scm (authenticator)[native-inputs]: Remove labels. [arguments]: While at it, remove top-level Python reference in favor of THIS-PACKAGE-INPUT. [inputs]: Add PYTHON. --- gnu/packages/gnome.scm | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'gnu/packages/gnome.scm') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index d1f791eb16..60e79a7039 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9607,24 +9607,25 @@ specified duration and save it as a GIF encoded animated image file.") (pylib (string-append (assoc-ref outputs "out") "/lib/python" ,(version-major+minor - (package-version python)) + (package-version + (this-package-input "python"))) "/site-packages"))) (wrap-program prog `("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH") ,pylib)) - `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))) - #t)))))) + `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))))))) (native-inputs - `(("desktop-file-utils" ,desktop-file-utils) - ("gettext" ,gettext-minimal) - ("glib:bin" ,glib "bin") - ("gobject-introspection" ,gobject-introspection) - ("gtk+:bin" ,gtk+ "bin") - ("pkg-config" ,pkg-config))) + (list desktop-file-utils + gettext-minimal + `(,glib "bin") + gobject-introspection + `(,gtk+ "bin") + pkg-config)) (inputs (list gsettings-desktop-schemas gtk+ libhandy-0.0 libsecret + python python-beautifulsoup4 python-pillow python-pyfavicon -- cgit v1.2.3 /log/build-aux?id=a016453a950c53c9b7f5bcdafb8209292601b1cd'>build-aux/cuirass
AgeCommit message (Expand)Author
2022-05-26cuirass: Create just as many threads as needed....Ludovic Courtès
2022-05-26cuirass: Fork inferior processes before creating threads....Ludovic Courtès
2022-05-20cuirass: Close each inferior upon completion....Ludovic Courtès