From b155fb2ce6678ea714b53003e5daef2b4f791975 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:44:09 +0200 Subject: [PATCH] gnu: Add texlive-avremu. * gnu/packages/tex.scm (texlive-avremu): 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 cb22a6077e..003803f9d2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -73427,6 +73427,26 @@ automatically punctuate the items. It uses Lua pattern matching to modify the environment's contents.") (license license:expat))) +(define-public texlive-avremu + (package + (name "texlive-avremu") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/avremu/" "source/latex/avremu/" + "tex/latex/avremu/") + (base32 + "1fmbmkqy4icbpprgwl9rbb5k44pcymjlqgggcxw9s58slfynsh20"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/avremu") + (synopsis "8-Bit micro-controller simulator written in LaTeX") + (description + "This package provides a fully working package to simulate a microprocessor in +pure LaTeX. The simulator is able to calculate complex pictures, like +Mandelbrot sets.") + (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