guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/08: gnu: isc-dhcp: Support for the Hurd.


From: guix-commits
Subject: 06/08: gnu: isc-dhcp: Support for the Hurd.
Date: Sun, 29 Mar 2020 04:29:36 -0400 (EDT)

janneke pushed a commit to branch wip-hurd
in repository guix.

commit 8fe3dfd3f1cc7e18278000b2b9a20170f0a3abbc
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Sat Mar 7 11:51:39 2020 -0500

    gnu: isc-dhcp: Support for the Hurd.
    
    * gnu/packages/admin.scm (isc-dhcp)[inputs]: Remove net-tools,
    iproute on the Hurd.
---
 gnu/packages/admin.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index d35c455..ae1ed94 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -910,8 +910,9 @@ connection alive.")
          ("file" ,file)))
 
       (inputs `(("inetutils" ,inetutils)
-                ("net-tools" ,net-tools)
-                ("iproute" ,iproute)
+                ,@(if (hurd-target?) '()
+                      `(("net-tools" ,net-tools)
+                        ("iproute" ,iproute)))
 
                 ;; isc-dhcp bundles a copy of BIND, which has proved vulnerable
                 ;; in the past.  Use a BIND-VERSION of our choosing instead.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]