diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-15 13:12:11 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:24 +0200 |
commit | 7b43326b8ad5435aa19f6568ad467cc140e24e8b (patch) | |
tree | e12c0c8818d8b3fb67dd5eaef6cb477116d18103 | |
parent | 00a789c4f69acd0e43b7080b3ec30664b3f63615 (diff) | |
download | guix-7b43326b8ad5435aa19f6568ad467cc140e24e8b.tar.gz guix-7b43326b8ad5435aa19f6568ad467cc140e24e8b.zip |
gnu: texlive-floatflt: Refresh package definition.
* gnu/packages/tex.scm (texlive-floatflt): Remove SIMPLE-TEXLIVE-PACKAGE
call.
-rw-r--r-- | gnu/packages/tex.scm | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ee3fc532a6..917ba35271 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12033,20 +12033,24 @@ their associated files. These were created using autoinst.") (define-public texlive-floatflt (package - (inherit (simple-texlive-package - "texlive-floatflt" - (list "doc/latex/floatflt/" - "source/latex/floatflt/" - "tex/latex/floatflt/") - (base32 - "1piy8ajbbcadsjwp0mhlgxm2ggggnb5sn75arfs5fxiaqrwd572j") - #:trivial? #t)) - (home-page "https://ctan.org/macros/latex/contrib/floatflt") + (name "texlive-floatflt") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/floatflt/" "source/latex/floatflt/" + "tex/latex/floatflt/") + (base32 + "1piy8ajbbcadsjwp0mhlgxm2ggggnb5sn75arfs5fxiaqrwd572j"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments + (list #:tex-format "latex")) + (home-page "https://ctan.org/pkg/floatflt") (synopsis "Wrap text around floats") (description - "The package can float text around figures and tables which do not -span the full width of a page; it improves upon floatfig, and allows -tables and figures to be set left/right or alternating on even/odd pages.") + "The package can float text around figures and tables which do not span +the full width of a page; it improves upon floatfig, and allows tables/figures +to be set left/right or alternating on even/odd pages.") (license license:lppl1.3+))) (define-public texlive-fvextra |