diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-11-28 22:27:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-12-01 20:14:16 +0100 |
commit | 79be44fb51b3055d1801835dccb9ec8c8d16692e (patch) | |
tree | 805d7b695558eeb9c780ff7db10cb65a2ffdee4a | |
parent | 2227a6b0846f7228d3f9ef7fca2f92c1a48bf11d (diff) | |
download | guix-79be44fb51b3055d1801835dccb9ec8c8d16692e.tar.gz guix-79be44fb51b3055d1801835dccb9ec8c8d16692e.zip |
gnu: gnutls: Change release monitoring URL.
* gnu/packages/tls.scm (gnutls)[properties]: Change release monitoring
URL. Add ‘upstream-name’.
Change-Id: If6ee941246b130914ddf7ca11c074a9547b9d739
-rw-r--r-- | gnu/packages/tls.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index 7709ce71ba..db3d2bcf6f 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -300,7 +300,11 @@ protocols, as well as to parse and write X.509, PKCS #12, OpenPGP and other required structures.") (license license:lgpl2.1+) (properties - '((release-monitoring-url . "https://gnutls.org/download.html"))))) + ;; Since gnutls.org doesn't have a page with a direct link to the + ;; tarball, defer to fellow LFS hackers. + '((release-monitoring-url + . "https://www.linuxfromscratch.org/blfs/view/svn/postlfs/gnutls.html") + (upstream-name . "gnutls"))))) (define-deprecated/public-alias gnutls-latest gnutls) |