From 71ca1465dc12dbb8f885ea9a5228b4a34ffdf7d1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 12 Jul 2023 21:50:33 +0200 Subject: [PATCH] gnu: Add texlive-adigraph. * gnu/packages/tex.scm (texlive-adigraph): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 153e89161f..b9477b7ff7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -15955,6 +15955,25 @@ ligatures (ff, fi, ffi, fl, ffl) in legacy TrueType fonts (those lacking a liga table) accessed via @code{fontspec}.") (license license:public-domain))) +(define-public texlive-adigraph + (package + (name "texlive-adigraph") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/adigraph/" "tex/latex/adigraph/") + (base32 + "0qzljcd1g0a9mwj0nrqc2xbka9si27a5d9hg3y7kk73n50zsxv5x"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/adigraph") + (synopsis "Augmenting directed graphs") + (description + "This LaTeX package provides the means to easily draw augmenting oriented +graphs, as well as cuts on them, to demonstrate steps of algorithms for +solving max-flow min-cut problems.") + (license license:expat))) + (define-public texlive-adjustbox (package (name "texlive-adjustbox")