diff options
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 40 |
1 files changed, 15 insertions, 25 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8f7f1fa42f..5849f4f8d8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5880,33 +5880,21 @@ of the LaTeX kernel.") (define-deprecated-package texlive-latex-etoolbox texlive-etoolbox) -(define-public texlive-latex-fncychap +(define-public texlive-fncychap (package - (name "texlive-latex-fncychap") + (name "texlive-fncychap") (version (number->string %texlive-revision)) - (source (origin - (method svn-fetch) - (uri (svn-reference - (url (string-append "svn://www.tug.org/texlive/tags/" - %texlive-tag "/Master/texmf-dist/" - "/tex/latex/fncychap")) - (revision %texlive-revision))) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "0fdk84dbicfjfprkz6vk15x36mvlhaw9isjmgkc56jp2khwjswwq")))) - (build-system trivial-build-system) - (arguments - `(#:modules ((guix build utils)) - #:builder - (begin - (use-modules (guix build utils)) - (let ((target (string-append (assoc-ref %outputs "out") - "/share/texmf-dist/tex/latex/fncychap"))) - (mkdir-p target) - (copy-recursively (assoc-ref %build-inputs "source") target) - #t)))) - (home-page "https://www.ctan.org/pkg/fncychap") + (source (texlive-origin + name version + (list "doc/latex/fncychap/" + "tex/latex/fncychap/") + (base32 + "1javlws18ncrf7rz7qfbx1db9jwk45lm6sa0s67hlr6hqnyjxf94"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-graphics)) + (home-page "https://ctan.org/pkg/fncychap") (synopsis "Seven predefined chapter heading styles") (description "This package provides seven predefined chapter heading styles. Each @@ -5915,6 +5903,8 @@ modify the formatting routines in order to create additional chapter headings.") (license license:lppl1.3+))) +(define-deprecated-package texlive-latex-fncychap texlive-fncychap) + (define-public texlive-latex-framed (package (name "texlive-latex-framed") |