diff options
author | Leo Famulari <leo@famulari.name> | 2017-07-25 20:24:23 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-07-26 12:06:52 -0400 |
commit | f96dbf6b70364518072c63037d3fca105dfe6497 (patch) | |
tree | 14109dd53f759afe36a95a919cd27314067d5ee9 /gnu/packages/linux.scm | |
parent | bcd757fdb49753f41a7ee4f0181cdef582705a6a (diff) | |
download | guix-f96dbf6b70364518072c63037d3fca105dfe6497.tar guix-f96dbf6b70364518072c63037d3fca105dfe6497.tar.gz |
gnu: net-tools: Add a test-only variant and use it for GnuTLS.
* gnu/packages/linux.scm (net-tools-for-tests): Add hidden net-tools variant.
* gnu/packages/tls.scm (gnutls)[native-inputs]: Use net-tools-for-tests instead
of net-tools.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 456909a940..7412ee5717 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1288,6 +1288,9 @@ network hardware types (plipconfig, slattach) and advanced aspects of IP configuration (iptunnel, ipmaddr).") (license license:gpl2+))) +(define-public net-tools-for-tests + (hidden-package net-tools)) + (define-public libcap (package (name "libcap") |