The guix style command reformats a package or a file to use the code style used by Guix.
This commits sync the package imports with the output produced by guix style. This commit should contain no functional changes. Signed-off-by: Denis 'GNUtoo' Carikli <[email protected]> --- scripts/guix.scm | 54 ++++++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/scripts/guix.scm b/scripts/guix.scm index dc69caa..fcb11c8 100644 --- a/scripts/guix.scm +++ b/scripts/guix.scm @@ -41,33 +41,33 @@ ;;; to all the exported functions, and make a new release when that is ;;; done. -(use-modules - (ice-9 popen) - (ice-9 rdelim) - (ice-9 regex) - (ice-9 textual-ports) - (sxml ssax input-parse) - ((guix licenses) #:prefix license:) - (guix build-system android-ndk) - (guix build-system gnu) - (guix gexp) - (guix git-download) - (guix packages) - (guix profiles) - (guix transformations) - (gnu packages) - (gnu packages android) - (gnu packages autotools) - (gnu packages base) - (gnu packages curl) - (gnu packages disk) - (gnu packages linux) - (gnu packages llvm) - (gnu packages pkg-config) - (gnu packages python) - (gnu packages python-xyz) - (gnu packages tls) - (gnu packages valgrind)) +(use-modules (ice-9 popen) + (ice-9 rdelim) + (ice-9 regex) + (ice-9 textual-ports) + (sxml ssax input-parse) + ((guix licenses) + #:prefix license:) + (guix build-system android-ndk) + (guix build-system gnu) + (guix gexp) + (guix git-download) + (guix packages) + (guix profiles) + (guix transformations) + (gnu packages) + (gnu packages android) + (gnu packages autotools) + (gnu packages base) + (gnu packages curl) + (gnu packages disk) + (gnu packages linux) + (gnu packages llvm) + (gnu packages pkg-config) + (gnu packages python) + (gnu packages python-xyz) + (gnu packages tls) + (gnu packages valgrind)) ;; We need a more recent version of android-make-stub as it now ;; support passing LOCAL_MODULE= to make to build specific local -- 2.39.1 _______________________________________________ Replicant mailing list [email protected] https://lists.osuosl.org/mailman/listinfo/replicant
