aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-05-16 22:33:26 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-07-18 18:12:14 +0200
commit30c25477b6f66cfb0725995a010e606edc2809f6 (patch)
treedf20000d33509751361b80c6c2a1e765995efb14 /gnu
parent8ba050da8b0c690270666403333e7bdd764fe73c (diff)
downloadguix-30c25477b6f66cfb0725995a010e606edc2809f6.tar.gz
guix-30c25477b6f66cfb0725995a010e606edc2809f6.zip
gnu: texlive-fancyvrb: Refresh package definition.
* gnu/packages/tex.scm (texlive-fancyvrb): Remove SIMPLE-TEXLIVE-PACKAGE call.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/tex.scm20
1 files changed, 11 insertions, 9 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 738307fafd..e4ec634358 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3630,14 +3630,16 @@ users, via its Plain TeX version.)")
(define-public texlive-fancyvrb
(package
- (inherit (simple-texlive-package
- "texlive-fancyvrb"
- (list "/doc/latex/fancyvrb/README"
- "/tex/latex/fancyvrb/")
- (base32
- "0pdilgpw4zc0ipp4z9kdi61nymifyjy2mfpk74xk2cw9vhynkk3w")
- #:trivial? #t))
- (home-page "https://www.ctan.org/pkg/fancyvrb")
+ (name "texlive-fancyvrb")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/fancyvrb/" "tex/latex/fancyvrb/")
+ (base32
+ "0c7y3hfhsvn3qipkq0g5zl9r6aa7bhjvrafxn0w29rpxgs3mc4jj")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (home-page "https://ctan.org/pkg/fancyvrb")
(synopsis "Sophisticated verbatim text")
(description
"This package provides tools for the flexible handling of verbatim text
@@ -3646,7 +3648,7 @@ with many parameters; ability to define new customized verbatim environments;
save and restore verbatim text and environments; write and read files in
verbatim mode; build \"example\" environments (showing both result and
verbatim source).")
- (license license:lppl1.0+)))
+ (license license:lppl1.3+)))
(define-deprecated-package texlive-latex-fancyvrb texlive-fancyvrb)