1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: bzip2: Drop input labels.

* gnu/packages/compression.scm (bzip2)[inputs]: Drop input labels.

Change-Id: I31b4ebbd43e1bc476b2c97f5a919dcaf0180f670
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Nicolas Graves
2026-02-20 18:32:34 +01:00
committed by Ludovic Courtès
parent de1f3a6a13
commit 6a35591167

View File

@@ -406,10 +406,9 @@ file; as a result, it is often used in conjunction with \"tar\", resulting in
;; Don't attempt to run the tests when cross-compiling.
#:tests? (not (%current-target-system))))
(inputs
`(,@(if (%current-target-system)
`(("bash" ,bash-minimal))
'())))
(inputs (if (%current-target-system)
(list bash-minimal)
(list)))
(outputs '("out" "static"))
(synopsis "High-quality data compression program")
(description