summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2025-01-11 18:48:08 +0100
committerLudovic Courtès <ludo@gnu.org>2025-01-11 23:36:57 +0100
commit6e215b83db4cdf147987fe1d8fb8735513df9353 (patch)
treea8309cfd5d8aac231f27f2b266a3e8e8c1225b64 /etc
parentab4dc03b675c86695940bb762dc9e1506807052d (diff)
etc: upgrade: Add web and crypto packages.
* etc/manifests/upgrade.scm (security-packages): add nghttp2, nginx, nettle, and libsodium. Change-Id: I264d4595c3448cdfe5aefebbeb19eeee5107cef9
Diffstat (limited to 'etc')
-rw-r--r--etc/manifests/upgrade.scm15
1 files changed, 13 insertions, 2 deletions
diff --git a/etc/manifests/upgrade.scm b/etc/manifests/upgrade.scm
index 8136b8f8d49..c3f7c73ece9 100644
--- a/etc/manifests/upgrade.scm
+++ b/etc/manifests/upgrade.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2024 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2024-2025 Ludovic Courtès <ludo@gnu.org>
3;;; 3;;;
4;;; This file is part of GNU Guix. 4;;; This file is part of GNU Guix.
5;;; 5;;;
@@ -36,11 +36,14 @@
36 #:select (all-packages specification->package)) 36 #:select (all-packages specification->package))
37 37
38 (gnu packages backup) 38 (gnu packages backup)
39 (gnu packages crypto)
39 (gnu packages curl) 40 (gnu packages curl)
40 (gnu packages freedesktop) 41 (gnu packages freedesktop)
41 (gnu packages gnupg) 42 (gnu packages gnupg)
43 (gnu packages nettle)
42 (gnu packages ssh) 44 (gnu packages ssh)
43 (gnu packages tls) 45 (gnu packages tls)
46 (gnu packages web)
44 (gnu packages xorg) 47 (gnu packages xorg)
45 48
46 (ice-9 match) 49 (ice-9 match)
@@ -59,6 +62,10 @@
59 curl 62 curl
60 curl-ssh 63 curl-ssh
61 64
65 ;; Web.
66 nghttp2
67 nginx
68
62 libarchive 69 libarchive
63 libssh 70 libssh
64 71
@@ -74,7 +81,11 @@
74 npth 81 npth
75 gnupg 82 gnupg
76 gpgme 83 gpgme
77 pinentry)) 84 pinentry
85
86 ;; Other crypto libraries.
87 nettle
88 libsodium))
78 89
79(define latest-version 90(define latest-version
80 (mlambdaq (package) 91 (mlambdaq (package)