aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/newt
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-09-13 10:40:46 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-11-09 21:33:44 +0000
commit58c64ad4d0e50e9d1daf9f42cfd13f0f4e516c94 (patch)
treed39101fcd53f36c4b29b63a54f8bc47292797a5e /gnu/installer/newt
parent17f2cc664e8ea7c7b0b238dcab65064ddeca8000 (diff)
downloadguix-58c64ad4d0e50e9d1daf9f42cfd13f0f4e516c94.tar.gz
guix-58c64ad4d0e50e9d1daf9f42cfd13f0f4e516c94.zip
gnu: go-golang-org-x-crypto: Update to 0.27.0.
* gnu/packages/golang-build.scm (go-golang-org-x-crypto): Update to 0.27.0. Change-Id: I949c32fd43cf644ee979348c7d52d91d4ab78632
Diffstat (limited to 'gnu/installer/newt')
0 files changed, 0 insertions, 0 deletions
0bc011af13d861bfece32d96db160f7686 Josselin Poiret 2024-08-31gnu: binutils: Use gexps....This is the result of applying ‘guix style -S arguments’ and making small adjustments. * gnu/packages/base.scm (binutils)[arguments]: Use gexps. (binutils-2.33, binutils-gold): Likewise. * gnu/packages/commencement.scm (binutils-mesboot0, binutils-mesboot1) (binutils-boot0, binutils-final): Likewise. * gnu/packages/cross-base.scm (cross-binutils*): Adjust accordingly. * gnu/packages/embedded.scm (make-propeller-binutils): Use gexps. * gnu/packages/make-bootstrap.scm (%binutils-static): Use gexps. Change-Id: I59cbe29760784b09e6d4e80beca9153cb9b495a7 Ludovic Courtès 2024-08-31gnu: %gcc-static: Import the correct set of modules....* gnu/packages/make-bootstrap.scm (%gcc-static) [arguments] <modules>: Replace %default-gnu-imported-modules with %default-gnu-modules. Change-Id: I44bf99a8f1a7836352478b6f7dadc27ffb81bb51 Maxim Cournoyer 2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer