diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-28 01:22:24 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-28 01:22:24 +0200 |
commit | 61fca0fd22b81bcc0201a336a02cac74b42c6a44 (patch) | |
tree | 67cca9c72282f24b9ceb0b1706c314537e8c37ea /guix/cve.scm | |
parent | 57dac1ee935edfab91e9b182c1f7c9ddae794656 (diff) | |
parent | 526ce419303ac511be8d51b41471022bed472e6b (diff) | |
download | gnu-guix-61fca0fd22b81bcc0201a336a02cac74b42c6a44.tar gnu-guix-61fca0fd22b81bcc0201a336a02cac74b42c6a44.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'guix/cve.scm')
-rw-r--r-- | guix/cve.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/cve.scm b/guix/cve.scm index 070acfeb3e..99754fa1f6 100644 --- a/guix/cve.scm +++ b/guix/cve.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -61,7 +61,7 @@ (define (yearly-feed-uri year) "Return the URI for the CVE feed for YEAR." (string->uri - (string-append "https://static.nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-" + (string-append "https://nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-" (number->string year) ".xml.gz"))) (define %current-year-ttl |