mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-21 22:42:04 +01:00
Merge bitcoin/bitcoin#27172: guix: switch to some minimal
versions of packages in our manifest
2c9eb4afe1
guix: use cmake-minimal over cmake (fanquake)1475515312
guix: use coreutils-minimal over coreutils (fanquake)4445621415
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: ACK2c9eb4afe1
Sjors: tACK2c9eb4afe1
achow101: ACK2c9eb4afe1
hebasto: ACK2c9eb4afe1
, Tree-SHA512: f91ca9e088b8346b20c2affc80870c31640de3aedcfcc0fb98a5e82c77ef64537870b88552f26759d31d8d0956b1fd685e6c25d5acbc92f5feaececd1a7dd37e
This commit is contained in:
commit
74981aa02d
1 changed files with 3 additions and 3 deletions
|
@ -566,9 +566,9 @@ inspecting signatures in Mach-O binaries.")
|
||||||
(packages->manifest
|
(packages->manifest
|
||||||
(append
|
(append
|
||||||
(list ;; The Basics
|
(list ;; The Basics
|
||||||
bash
|
bash-minimal
|
||||||
which
|
which
|
||||||
coreutils
|
coreutils-minimal
|
||||||
util-linux
|
util-linux
|
||||||
;; File(system) inspection
|
;; File(system) inspection
|
||||||
file
|
file
|
||||||
|
@ -611,5 +611,5 @@ inspecting signatures in Mach-O binaries.")
|
||||||
((string-contains target "-linux-")
|
((string-contains target "-linux-")
|
||||||
(list (make-bitcoin-cross-toolchain target)))
|
(list (make-bitcoin-cross-toolchain target)))
|
||||||
((string-contains target "darwin")
|
((string-contains target "darwin")
|
||||||
(list clang-toolchain-10 binutils cmake xorriso python-signapple))
|
(list clang-toolchain-10 binutils cmake-minimal xorriso python-signapple))
|
||||||
(else '())))))
|
(else '())))))
|
||||||
|
|
Loading…
Add table
Reference in a new issue