From 463710da2352c6225ca834e98ddd878e2e945066 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 26 Jun 2023 14:23:52 +0200 Subject: [PATCH] gnu: Add texlive-barracuda. * gnu/packages/tex.scm (texlive-barracuda): 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 b44bcc91f6..039834d31f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -14890,6 +14890,27 @@ Niepraschk. The package allows the use of LuaLaTeX together with PostScript related code, e.g., PSTricks.") (license license:lppl1.3c))) +(define-public texlive-barracuda + (package + (name "texlive-barracuda") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/luatex/barracuda/" "scripts/barracuda/" + "tex/luatex/barracuda/") + (base32 + "1v318nbbbp2klp0rykzb3skqqw4hhj1hbliigmp3qh34iiq3wqh0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/barracuda") + (synopsis "Draw barcodes with Lua") + (description + "The Barracuda library is a modular Lua package for drawing barcode +symbols. It provides modules for writing barcodes from a LuaTeX document. It +is also possible to use Barracuda with a standalone Lua interpreter to draw +barcodes in different graphic formats like SVG.") + (license license:gpl2))) + (define-public texlive-qrcode (package (name "texlive-qrcode")