summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-26 23:04:40 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-26 23:05:08 +0100
commitd88f85f5cf1ddd6f65c36565d07920fc9d2ba42e (patch)
tree530066c966f1c4e344cc698feef896880ec8e764
parent0842b49f440a66f2b9f2ccaf5e7470d131854393 (diff)
gnu: exercism: Update to 3.5.5.
* gnu/packages/education.scm (exercism): Update to 3.5.5. [native-inputs]: Add go-github-com-stretchr-testify. Change-Id: Ib6bc8fc7c92dae79373a7971258be7a4ee780349
-rw-r--r--gnu/packages/education.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 18eb3e20ed..4cb91b91d3 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -1112,7 +1112,7 @@ machine, and more.")
(define-public exercism
(package
(name "exercism")
- (version "3.5.4")
+ (version "3.5.5")
(source
(origin
(method git-fetch)
@@ -1121,7 +1121,7 @@ machine, and more.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0shh84g7j977kn9kcm09rj3lz6a3y5qq9yvklsldgb9zvass5szd"))
+ (base32 "1a53caqrxv0rhg79md97vnzcbr9gnz3mzjkk7xyafc3h456b4gsz"))
(patches (search-patches "exercism-disable-self-update.patch"))))
(build-system go-build-system)
(arguments
@@ -1129,6 +1129,8 @@ machine, and more.")
#:install-source? #f
#:import-path "github.com/exercism/cli/exercism"
#:unpack-path "github.com/exercism/cli"
+ ;; Step away from cli/exercism to test the whole project.
+ #:test-subdirs #~(list "../../...")
#:phases
#~(modify-phases %standard-phases
(add-after 'install 'install-completions
@@ -1160,6 +1162,7 @@ machine, and more.")
go-github-com-spf13-cobra
go-github-com-spf13-pflag
go-github-com-spf13-viper
+ go-github-com-stretchr-testify
go-golang-org-x-net
go-golang-org-x-text))
(home-page "https://exercism.org/")