diff options
-rw-r--r-- | gnu/packages/golang.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 04425630c0..7052472e14 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3835,7 +3835,7 @@ containers.") (define-public go-github-com-spf13-cobra (package (name "go-github-com-spf13-cobra") - (version "1.5.0") + (version "1.8.0") (source (origin (method git-fetch) @@ -3845,12 +3845,12 @@ containers.") (file-name (git-file-name name version)) (sha256 (base32 - "0qavvyljh509w5xb46lfkak670szp6v4jswwar1hx13cpid8gk5d")))) + "0mhnqfgcwwcknlhk7n07i02q3iqq6ihksj4dwz296zci8ry3w0d0")))) (build-system go-build-system) (arguments `(#:import-path "github.com/spf13/cobra")) (propagated-inputs - `(("github.com/spf13/pflag" ,go-github-com-spf13-pflag))) + (list go-github-com-spf13-pflag)) (home-page "https://github.com/spf13/cobra") (synopsis "Go library for creating CLI applications") (description "Cobra is both a library for creating powerful modern CLI |