From e027a20ee46556e122633d4f0e66a57682f4a0a9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 30 Jul 2023 15:49:17 +0200 Subject: [PATCH] gnu: Add texlive-cvss. * gnu/packages/tex.scm (texlive-cvss): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 26bbcf3d82..c191648a31 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2861,6 +2861,29 @@ (define-public texlive-csassignments as well as several macros for easier math mode usage.") (license license:expat))) +(define-public texlive-cvss + (package + (name "texlive-cvss") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/cvss/" "source/latex/cvss/" + "tex/latex/cvss/") + (base32 + "0hs931xcj7jai901nvfvi942x403sda7xslq14bfjls0v74lkhbd"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/cvss") + (synopsis "Compute and display CVSS base scores") + (description + "The Common Vulnerability Scoring System (CVSS) is an open framework for +communicating the characteristics and severity of software vulnerabilities. +CVSS consists of three metric groups: Base, Temporal, and Environmental. This +package allows the user to compute CVSS3.1 base scores and use them in +documents, i.e., it only deals with the Base score. Temporal and +Environmental scores will be part of a future release.") + (license license:lppl1.3c))) + (define-public texlive-cweb-old (package (name "texlive-cweb-old")