mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
fa5080800f
commit
5fe79897cd
1 changed files with 11 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
||||||
;;; Copyright © 2022 zamfofex <zamfofex@twdb.moe>
|
;;; Copyright © 2022 zamfofex <zamfofex@twdb.moe>
|
||||||
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
||||||
;;; Copyright © 2023 Josselin Poiret <dev@jpoiret.xyz>
|
;;; 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.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -765,8 +765,17 @@ included.")
|
||||||
(properties '())))
|
(properties '())))
|
||||||
|
|
||||||
(define-public binutils-gold
|
(define-public binutils-gold
|
||||||
(package/inherit binutils
|
(package
|
||||||
|
(inherit binutils)
|
||||||
(name "binutils-gold")
|
(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
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments binutils)
|
(substitute-keyword-arguments (package-arguments binutils)
|
||||||
((#:configure-flags flags)
|
((#:configure-flags flags)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue