diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2022-09-04 08:25:42 +0300 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-04 17:01:56 +0200 |
commit | 3cf79710f35a8196900fde78596052048b7371cf (patch) | |
tree | 489a087ae9dd2d5959a440099474984a35bd0765 | |
parent | ae81cb69622e207e491618869d3452c0e68203d0 (diff) | |
download | guix-3cf79710f35a8196900fde78596052048b7371cf.tar.gz |
gnu: Add guile2.2-smc
* gnu/packages/guile-xyz.scm (guile2.2-smc): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
-rw-r--r-- | gnu/packages/guile-xyz.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 325252fbc6..e7c27fdf90 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -4926,6 +4926,14 @@ format. This tool is meant to be called on a PlantUML file when a program with a FSM is being built (for example, from a Makefile.)") (license license:gpl3))) +(define-public guile2.2-smc + (package + (inherit guile-smc) + (name "guile2.2-smc") + (inputs (modify-inputs (package-inputs guile-smc) + (replace "guile" guile-2.2) + (replace "guile-lib" guile2.2-lib))))) + (define-public guile-ini (package (name "guile-ini") |