gnu: debootstrap: Wrap with gpg and wget in PATH.

* gnu/packages/debian.scm (debootstrap)[inputs]: Add GNUPG and WGET.
This commit is contained in:
Marius Bakke 2020-06-19 12:08:56 +02:00
parent 5d426d3c04
commit 6941004fb0
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -181,7 +181,11 @@ (define-public debootstrap
(inputs
`(("debian-keyring" ,debian-archive-keyring)
("ubuntu-keyring" ,ubuntu-keyring)
("tzdata" ,tzdata)))
("tzdata" ,tzdata)
;; Called at run-time from various places, needs to be in PATH.
("gnupg" ,gnupg)
("wget" ,wget)))
(native-inputs
`(("perl" ,perl)))
(home-page "https://tracker.debian.org/pkg/debootstrap")