From 2053f55ba8c4a4f66af1daf729108ce7028bb8c1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:48:12 +0200 Subject: [PATCH] gnu: Add texlive-dirtytalk. * gnu/packages/tex.scm (texlive-dirtytalk): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 64b5d7fcae..ee0ab02489 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -79132,6 +79132,27 @@ mode.") maintenance and exploitation of an address book-like database.") (license license:lppl))) +(define-public texlive-dirtytalk + (package + (name "texlive-dirtytalk") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/dirtytalk/" + "source/latex/dirtytalk/" + "tex/latex/dirtytalk/") + (base32 + "1rm3y5bwxg7s8db10pzkskgcp54qlkz93g6kif732n9j5c17d9ca"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/dirtytalk") + (synopsis "Typeset quotations easier") + (description + "The package provides a macro to typeset quotations, using the command +@code{\\say}. The quotation mark glyphs are inserted by the macro; nested +quotations are detected.") + (license license:public-domain))) + ;;; ;;; 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