aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-01-12 23:02:26 +0100
committerLudovic Courtès <ludo@gnu.org>2013-01-12 23:02:26 +0100
commitfa39cc0da65677e801438cacb94088a13e2f0254 (patch)
tree622b36cb1a043d3c4ed31456ee148b5fa09e1956
parentfbbb1c0f4ca31ed2a13fe7362e441ccc04a8d08d (diff)
downloadguix-fa39cc0da65677e801438cacb94088a13e2f0254.tar.gz
guix-fa39cc0da65677e801438cacb94088a13e2f0254.zip
distro: gnutls: Add dependency on Which.
* distro/packages/gnutls.scm (gnutls): Add dependency on Which.
-rw-r--r--distro/packages/gnutls.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/distro/packages/gnutls.scm b/distro/packages/gnutls.scm
index 3c5facd1f2..d4a2fe14b7 100644
--- a/distro/packages/gnutls.scm
+++ b/distro/packages/gnutls.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -26,7 +26,8 @@
#:renamer (symbol-prefix-proc 'guix:))
#:use-module (distro packages nettle)
#:use-module (distro packages guile)
- #:use-module (distro packages perl))
+ #:use-module (distro packages perl)
+ #:use-module (distro packages which))
(define-public libtasn1
(package
@@ -77,7 +78,8 @@ portable, and only require an ANSI C89 platform.")
("perl" ,perl)))
(propagated-inputs
`(("libtasn1" ,libtasn1)
- ("nettle" ,nettle)))
+ ("nettle" ,nettle)
+ ("which" ,which)))
(home-page "http://www.gnu.org/software/gnutls/")
(synopsis
"The GNU Transport Layer Security Library")
/td> 2020-12-08daemon: Raise an error if substituter doesn't send the expected hash....Ludovic Courtès 2020-12-08substitute: Cache and reuse connections while substituting....Ludovic Courtès 2020-12-08daemon: Run 'guix substitute --substitute' as an agent....Ludovic Courtès 2020-12-08daemon: Factorize substituter agent spawning....Ludovic Courtès 2020-12-08daemon: Use 'Agent' to spawn 'guix substitute --query'....Ludovic Courtès 2020-12-08daemon: 'Agent' constructor takes a list of environment variables....Ludovic Courtès 2020-12-01daemon: Remove unneeded forward declaration....Ludovic Courtès 2020-11-29daemon: Remove pre-Guix hack....Ludovic Courtès 2020-11-29Use substitute servers on the local network....Mathieu Othacehe 2020-10-27maint: Add 'etc/gnu-store.mount.in' to the distribution....Ludovic Courtès 2020-10-09nix: Honor '--rounds' when also using '--check'....Maxim Cournoyer 2020-10-01daemon: Try to execute derivation builders only for matching OS kernels....Ludovic Courtès 2020-09-17guix-install.sh: Support OpenRC....Morgan Smith 2020-09-14daemon: Spawn 'guix authenticate' once for all....Ludovic Courtès 2020-09-14daemon: Move 'Agent' to libutil....Ludovic Courtès 2020-09-14daemon: Isolate signing and signature verification functions....Ludovic Courtès 2020-09-14daemon: Generalize 'HookInstance' to 'Agent'....Ludovic Courtès 2020-09-11daemon: Simplify interface with 'guix authenticate'....Ludovic Courtès 2020-06-27daemon: Recognize SHA3 and BLAKE2s....Ludovic Courtès 2020-06-27daemon: Remove OpenSSL hash compatibility wrappers....Ludovic Courtès 2020-06-27daemon: Map directly to gcrypt hash functions....Ludovic Courtès 2020-06-25daemon: Correctly handle EMLINK corner case when deduplicating....Ludovic Courtès 2020-06-24nix: Tweak .gitignore files....Christopher Baines