diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-10-01 23:48:02 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-10-01 23:48:02 +0300 |
commit | 821cd5651a29c668a070625e8ce45fe164fe9527 (patch) | |
tree | 2ff19df4139ea41341a5324f1bfd7bef77ccfd3d | |
parent | 04516a7adffd23ecbe23a718625b3adcefe1f63e (diff) | |
download | guix-821cd5651a29c668a070625e8ce45fe164fe9527.tar.gz guix-821cd5651a29c668a070625e8ce45fe164fe9527.zip |
gnu: exercism: Remove input labels.
* gnu/packages/education.scm (exercism)[inputs]: Remove input labels.
-rw-r--r-- | gnu/packages/education.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 9e082b00c0..0d4719f3ce 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -1088,12 +1088,12 @@ machine, and more.") (lambda () (invoke (string-append out "/bin/exercism") "completion" "zsh"))))))))) (inputs - `(("github.com/blang/semver" ,go-github-com-blang-semver) - ("github.com/spf13/cobra" ,go-github-com-spf13-cobra) - ("github.com/spf13/pflag" ,go-github-com-spf13-pflag) - ("github.com/spf13/viper" ,go-github-com-spf13-viper) - ("golang.org/x/net" ,go-golang-org-x-net) - ("golang.org/x/text" ,go-golang-org-x-text))) + (list go-github-com-blang-semver + go-github-com-spf13-cobra + go-github-com-spf13-pflag + go-github-com-spf13-viper + go-golang-org-x-net + go-golang-org-x-text)) (home-page "https://exercism.org/") (synopsis "Mentored learning for programming languages") (description "Commandline client for exercism.io, a free service providing |