diff options
author | Zheng Junjie <z572@z572.online> | 2025-07-14 17:10:43 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:52 +0200 |
commit | 5fe79897cd7566c22f49e30a3f0f09ed4befd0ee (patch) | |
tree | 0398e580faf8c3df45e4ec3067856a398c5de021 | |
parent | fa5080800fab8b2f19e745e0f048516a72d840b2 (diff) |
gnu: binutils-gold: Fix build.
* gnu/packages/base.scm (binutils-gold): Use package, not package/inherit.
[source]: Update url.
Change-Id: Iab2e69815968f29f91cd781662fd16f205d2978a
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/base.scm | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 59866e79b2..4909a375a1 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -23,7 +23,7 @@ ;;; Copyright © 2022 zamfofex <zamfofex@twdb.moe> ;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com> ;;; Copyright © 2023 Josselin Poiret <dev@jpoiret.xyz> -;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> +;;; Copyright © 2024, 2025 Zheng Junjie <z572@z572.online> ;;; ;;; This file is part of GNU Guix. ;;; @@ -765,8 +765,17 @@ included.") (properties '()))) (define-public binutils-gold - (package/inherit binutils + (package + (inherit binutils) (name "binutils-gold") + (version "2.44") + (source + (origin + (inherit (package-source binutils)) + (uri (string-append "mirror://gnu/binutils/binutils-with-gold-" + version ".tar.bz2")) + (sha256 + (base32 "1j64m2czn9ygd5g1cjjcw7q43b18xh6qkrdl1pkm03ncjnj3wwrl")))) (arguments (substitute-keyword-arguments (package-arguments binutils) ((#:configure-flags flags) |