gnu: xfsprogs-5.9: Fix build.

* gnu/packages/linux.scm (xfsprogs-5.9)[arguments]: Disable use gettext.
[native-inputs]: Remove gettext-minimal.

Change-Id: Ia2ad210fc41420b70705bbe23d9fbecf4f002236
This commit is contained in:
Zheng Junjie 2025-07-12 12:23:00 +08:00 committed by Andreas Enge
parent 4a19e9178b
commit 28508c2462
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -10191,7 +10191,15 @@ file systems.")
"xfsprogs-" version ".tar.gz"))
(sha256
(base32
"13xkn9jpmwp4fm9r68vhgznkmxhnv83n2b39mhy2qdaph90w2a1l"))))))
"13xkn9jpmwp4fm9r68vhgznkmxhnv83n2b39mhy2qdaph90w2a1l"))))
(arguments
(substitute-keyword-arguments (package-arguments xfsprogs)
((#:configure-flags configure-flags '())
`(cons "--enable-gettext=no"
,configure-flags))))
(native-inputs
(modify-inputs (package-native-inputs xfsprogs)
(delete "gettext-minimal")))))
(define-public xfsprogs/static
(package