diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-02-19 15:44:50 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-02-19 17:30:29 +0100 |
commit | bfb6c393b91dc4a236678a0682348d5b7bd77193 (patch) | |
tree | 56b51fcb9f8434f0ca5c16f43dcee5d0a60d1642 /gnu/packages/package-management.scm | |
parent | 5479cef8ef220138577056e3e178496e9480b678 (diff) | |
download | patches-bfb6c393b91dc4a236678a0682348d5b7bd77193.tar patches-bfb6c393b91dc4a236678a0682348d5b7bd77193.tar.gz |
gnu: gwl: Build with Guile 3.
* gnu/packages/package-management.scm (gwl)[inputs]: Replace guile-2.2 with
guile-3.0.
[propagated-inputs]: Replace guix, guile-commonmark, guile-gcrypt, guile-pfds,
guile-syntax-highlight, and guile-wisp with their Guile 3.0 variants.
Diffstat (limited to 'gnu/packages/package-management.scm')
-rw-r--r-- | gnu/packages/package-management.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 09888ca9e2..8443b0a67f 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -803,14 +803,14 @@ written entirely in Python."))) ("texinfo" ,texinfo) ("graphviz" ,graphviz))) (inputs - `(("guile" ,guile-2.2))) + `(("guile" ,guile-3.0))) (propagated-inputs - `(("guix" ,guix) - ("guile-commonmark" ,guile-commonmark) - ("guile-gcrypt" ,guile-gcrypt) - ("guile-pfds" ,guile-pfds) - ("guile-syntax-highlight" ,guile-syntax-highlight) - ("guile-wisp" ,guile-wisp))) + `(("guix" ,guile3.0-guix) + ("guile-commonmark" ,guile3.0-commonmark) + ("guile-gcrypt" ,guile3.0-gcrypt) + ("guile-pfds" ,guile3.0-pfds) + ("guile-syntax-highlight" ,guile3.0-syntax-highlight) + ("guile-wisp" ,guile3.0-wisp))) (home-page "https://workflows.guix.info") (synopsis "Workflow management extension for GNU Guix") (description "The @dfn{Guix Workflow Language} (GWL) provides an |