mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: gnutls: Remove net-tools for the Hurd.
* gnu/packages/tls.scm (gnutls)[inputs]: Remove net-tools for the Hurd.
This commit is contained in:
parent
9ec263b415
commit
a9bcc64746
1 changed files with 4 additions and 1 deletions
|
@ -14,6 +14,7 @@
|
|||
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
||||
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -50,6 +51,7 @@ (define-module (gnu packages tls)
|
|||
#:use-module (gnu packages dns)
|
||||
#:use-module (gnu packages gawk)
|
||||
#:use-module (gnu packages guile)
|
||||
#:use-module (gnu packages hurd)
|
||||
#:use-module (gnu packages libbsd)
|
||||
#:use-module (gnu packages libffi)
|
||||
#:use-module (gnu packages libidn)
|
||||
|
@ -223,7 +225,8 @@ (define-public gnutls
|
|||
"debug"
|
||||
"doc")) ;4.1 MiB of man pages
|
||||
(native-inputs
|
||||
`(("net-tools" ,net-tools)
|
||||
`(,@(if (hurd-target?) '()
|
||||
`(("net-tools" ,net-tools)))
|
||||
("pkg-config" ,pkg-config)
|
||||
("which" ,which)
|
||||
("datefudge" ,datefudge) ;tests rely on 'datefudge'
|
||||
|
|
Loading…
Reference in a new issue