z572 pushed a commit to branch master
in repository guix.
commit 33471f637a8a14c9072a5836ac7370885de3dfe8
Author: Zheng Junjie <[email protected]>
AuthorDate: Thu Jan 9 14:28:15 2025 +0800
gnu: squashfuse-for-appimage: Fix indentation.
* gnu/packages/file-systems.scm (squashfuse-for-appimage): Fix indentation.
Change-Id: Ia420df1e71690c206fb663eb962bdc373fef5929
---
gnu/packages/file-systems.scm | 40 ++++++++++++++++++++--------------------
1 file changed, 20 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index 778cba53ed..e92f9036aa 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -2069,26 +2069,26 @@ memory-efficient.")
(license license:bsd-2)))
(define-public squashfuse-for-appimage
- (package
- (inherit squashfuse)
- (arguments
- (cons*
- #:configure-flags
- #~'("CFLAGS=-ffunction-sections -fdata-sections -Os -no-pie"
- "LDFLAGS=-static")
- (substitute-keyword-arguments (package-arguments squashfuse)
- ((#:phases phases)
- #~(modify-phases #$phases
- (add-after 'install 'install-private-headers
- (lambda _
- (install-file "fuseprivate.h"
- (string-append #$output
- "/include/squashfuse/")))))))))
- (inputs (list fuse-for-appimage
- `(,zstd "lib")
- `(,zstd "static")
- `(,zlib "out")
- `(,zlib "static")))))
+ (package
+ (inherit squashfuse)
+ (arguments
+ (cons*
+ #:configure-flags
+ #~'("CFLAGS=-ffunction-sections -fdata-sections -Os -no-pie"
+ "LDFLAGS=-static")
+ (substitute-keyword-arguments (package-arguments squashfuse)
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (add-after 'install 'install-private-headers
+ (lambda _
+ (install-file "fuseprivate.h"
+ (string-append #$output
+ "/include/squashfuse/")))))))))
+ (inputs (list fuse-for-appimage
+ `(,zstd "lib")
+ `(,zstd "static")
+ `(,zlib "out")
+ `(,zlib "static")))))
(define-public tmsu
(package