gnu: commencement: Explicitly provide the source of 'tcc-boot'.

* gnu/packages/commencement.scm (tcc-boot)[source]: Remove dependency on
tcc.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Ekaitz Zarraga 2022-07-12 11:05:15 +02:00 committed by Ludovic Courtès
parent e87c6fb95a
commit f35b771a0f
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -13,6 +13,7 @@
;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com> ;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2022 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2022 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2022 Ekaitz Zarraga <ekaitz@elenq.tech>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -808,7 +809,13 @@ (define tcc-boot
(inherit tcc-boot0) (inherit tcc-boot0)
(name "tcc-boot") (name "tcc-boot")
(version "0.9.27") (version "0.9.27")
(source (package-source tcc)) (source (origin
(method url-fetch)
(uri (string-append "mirror://savannah/tinycc/tcc-"
version ".tar.bz2"))
(sha256
(base32
"177bdhwzrnqgyrdv1dwvpd04fcxj68s5pm1dzwny6359ziway8yy"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs '()) (inputs '())
(propagated-inputs '()) (propagated-inputs '())