Skip to content

Commit 74981aa

Browse files
committed
Merge bitcoin#27172: guix: switch to some minimal versions of packages in our manifest
2c9eb4a guix: use cmake-minimal over cmake (fanquake) 1475515 guix: use coreutils-minimal over coreutils (fanquake) 4445621 guix: use bash-minimal over bash (fanquake) Pull request description: Minimal versions of the same packages, that should still be sufficient for our use: > (define-public bash-minimal ;; A stripped-down Bash for non-interactive use. > (define-public coreutils-minimal ;; Coreutils without its optional dependencies. > ;;; This minimal variant of CMake does not include the documentation. It is ;;; used by the cmake-build-system. (define-public cmake-minimal ACKs for top commit: TheCharlatan: ACK 2c9eb4a Sjors: tACK 2c9eb4a achow101: ACK 2c9eb4a hebasto: ACK 2c9eb4a, Tree-SHA512: f91ca9e088b8346b20c2affc80870c31640de3aedcfcc0fb98a5e82c77ef64537870b88552f26759d31d8d0956b1fd685e6c25d5acbc92f5feaececd1a7dd37e
2 parents 4d24e9c + 2c9eb4a commit 74981aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/guix/manifest.scm

+3-3
Original file line numberDiff line numberDiff line change
@@ -566,9 +566,9 @@ inspecting signatures in Mach-O binaries.")
566566
(packages->manifest
567567
(append
568568
(list ;; The Basics
569-
bash
569+
bash-minimal
570570
which
571-
coreutils
571+
coreutils-minimal
572572
util-linux
573573
;; File(system) inspection
574574
file
@@ -611,5 +611,5 @@ inspecting signatures in Mach-O binaries.")
611611
((string-contains target "-linux-")
612612
(list (make-bitcoin-cross-toolchain target)))
613613
((string-contains target "darwin")
614-
(list clang-toolchain-10 binutils cmake xorriso python-signapple))
614+
(list clang-toolchain-10 binutils cmake-minimal xorriso python-signapple))
615615
(else '())))))

0 commit comments

Comments
 (0)