gnu: squashfuse-for-appimage: Fix indentation.

* gnu/packages/file-systems.scm (squashfuse-for-appimage): Fix indentation.

Change-Id: Ia420df1e71690c206fb663eb962bdc373fef5929
This commit is contained in:
Zheng Junjie 2025-01-09 14:28:15 +08:00
parent 9fb7b9ef68
commit 33471f637a
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0

View file

@ -2069,26 +2069,26 @@ (define-public squashfuse
(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