From ea285086b8b626acc5422d359297f00c0f6eb153 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:44:13 +0200 Subject: [PATCH] gnu: Add texlive-bashful. * gnu/packages/tex.scm (texlive-bashful): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index aa608d1d6e..06e282121f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -73522,6 +73522,26 @@ (define-public texlive-bankstatement the terminology to suit local needs.") (license license:lppl))) +(define-public texlive-bashful + (package + (name "texlive-bashful") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bashful/" "tex/latex/bashful/") + (base32 + "08r2yvzck2gngl6sc9giridfmqsbrpdfpv5n9pkwsx0yfx0lk30c"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bashful") + (synopsis "Invoke Bash commands from within LaTeX") + (description + "The package makes it possible to execute Unix Bash shell scripts from within +LaTeX. The main application is in writing computer-science texts, in which +you want to make sure the programs listed in the document are executed +directly from the input. The package may use other shells than Bash.") + (license license:lppl1.3+))) + ;;; ;;; 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