From 2d63d7301212e76ead667e6d3fafa9cfc4bc1c44 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:46:20 +0200 Subject: [PATCH] gnu: Add texlive-colorframed. * gnu/packages/tex.scm (texlive-colorframed): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 99d5cb2f6a..abaf611051 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -76562,6 +76562,25 @@ process of writing. Three options are provided, including a non-color option designed for printing (which numbers delimiters and underlines new commands).") (license license:lppl1.0+))) +(define-public texlive-colorframed + (package + (name "texlive-colorframed") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/colorframed/" + "tex/latex/colorframed/") + (base32 + "0sfg6rkyhh9i13003xdm6mnskj4nlngwq268ra4ik9vrb11s70g9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/colorframed") + (synopsis "Fix color problems with the package @code{framed}") + (description + "This package fixes problems with colour loss that occurres in the +environments of the @code{framed} package.") + (license license:lppl1.3c))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar