mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: ntp: Prepare for GCC 10.
* gnu/packages/ntp.scm (ntp)[source](patches): New field.
This commit is contained in:
parent
7003b2db52
commit
c1947a8c7d
1 changed files with 11 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
;;; Copyright © 2021 Marius Bakke <marius@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -122,6 +123,16 @@ (define-public ntp
|
||||||
"/ntp-" version ".tar.gz")))
|
"/ntp-" version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "06cwhimm71safmwvp6nhxp6hvxsg62whnbgbgiflsqb8mgg40n7n"))
|
(base32 "06cwhimm71safmwvp6nhxp6hvxsg62whnbgbgiflsqb8mgg40n7n"))
|
||||||
|
;; Add an upstream patch to fix build with GCC 10. Taken from
|
||||||
|
;; <https://bugs.ntp.org/show_bug.cgi?id=3688>.
|
||||||
|
(patches (list (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri "https://bugs.ntp.org/attachment.cgi?id=1760\
|
||||||
|
&action=diff&context=patch&collapsed=&headers=1&format=raw")
|
||||||
|
(file-name "ntp-gcc-compat.patch")
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"13d28sg45rflc7kqiv30asrhna8n69wlpwx16l65rravgpvp90h2")))))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
|
Loading…
Reference in a new issue