summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-04-06 10:56:27 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-04-06 13:14:43 +0100
commit4dcc9df560e824eca6a26c0943f3c18a84fa23d0 (patch)
tree70d926c207f124515f7350e30c8845cfe725cb58 /gnu
parent0f652cc404c6c2dffd86b0582bf9bf1fdab8ce38 (diff)
gnu: go-github-com-spf13-cobra: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-spf13-cobra): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I545b0279c040be0412cbca744e949f31e9d34b1f
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm27
-rw-r--r--gnu/packages/golang.scm25
2 files changed, 27 insertions, 25 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 06942a36478..466f13631c2 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -18,6 +18,7 @@
18;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev> 18;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
19;;; Copyright © 2021 raingloom <raingloom@riseup.net> 19;;; Copyright © 2021 raingloom <raingloom@riseup.net>
20;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com> 20;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
21;;; Copyright © 2022 Dhruvin Gandhi <contact@dhruvin.dev>
21;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev> 22;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
22;;; Copyright © 2023 Benjamin <benjamin@uvy.fr> 23;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
23;;; Copyright © 2023 Fries <fries1234@protonmail.com> 24;;; Copyright © 2023 Fries <fries1234@protonmail.com>
@@ -2576,6 +2577,32 @@ Use waterutil with it to work with TUN/TAP packets/frames.")
2576 "@{gitconfig} is a package to get configuration values from gitconfig.") 2577 "@{gitconfig} is a package to get configuration values from gitconfig.")
2577 (license license:expat))) 2578 (license license:expat)))
2578 2579
2580(define-public go-github-com-spf13-cobra
2581 (package
2582 (name "go-github-com-spf13-cobra")
2583 (version "1.8.0")
2584 (source
2585 (origin
2586 (method git-fetch)
2587 (uri (git-reference
2588 (url "https://github.com/spf13/cobra")
2589 (commit (string-append "v" version))))
2590 (file-name (git-file-name name version))
2591 (sha256
2592 (base32 "0mhnqfgcwwcknlhk7n07i02q3iqq6ihksj4dwz296zci8ry3w0d0"))))
2593 (build-system go-build-system)
2594 (arguments
2595 (list
2596 #:import-path "github.com/spf13/cobra"))
2597 (propagated-inputs
2598 (list go-github-com-spf13-pflag))
2599 (home-page "https://github.com/spf13/cobra")
2600 (synopsis "Go library for creating CLI applications")
2601 (description
2602 "Cobra is both a library for creating powerful modern CLI applications as
2603well as a program to generate applications and command files.")
2604 (license license:asl2.0)))
2605
2579(define-public go-github-com-stathat-go 2606(define-public go-github-com-stathat-go
2580 (let ((commit "74669b9f388d9d788c97399a0824adbfee78400e") 2607 (let ((commit "74669b9f388d9d788c97399a0824adbfee78400e")
2581 (revision "0")) 2608 (revision "0"))
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1b138d8d0e6..39d98afb45c 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3674,31 +3674,6 @@ containers.")
3674 (description "Safe and easy casting from one type to another in Go") 3674 (description "Safe and easy casting from one type to another in Go")
3675 (license license:expat))) 3675 (license license:expat)))
3676 3676
3677(define-public go-github-com-spf13-cobra
3678 (package
3679 (name "go-github-com-spf13-cobra")
3680 (version "1.8.0")
3681 (source
3682 (origin
3683 (method git-fetch)
3684 (uri (git-reference
3685 (url "https://github.com/spf13/cobra")
3686 (commit (string-append "v" version))))
3687 (file-name (git-file-name name version))
3688 (sha256
3689 (base32
3690 "0mhnqfgcwwcknlhk7n07i02q3iqq6ihksj4dwz296zci8ry3w0d0"))))
3691 (build-system go-build-system)
3692 (arguments
3693 `(#:import-path "github.com/spf13/cobra"))
3694 (propagated-inputs
3695 (list go-github-com-spf13-pflag))
3696 (home-page "https://github.com/spf13/cobra")
3697 (synopsis "Go library for creating CLI applications")
3698 (description "Cobra is both a library for creating powerful modern CLI
3699applications as well as a program to generate applications and command files.")
3700 (license license:asl2.0)))
3701
3702(define-public go-github-com-spf13-jwalterweatherman 3677(define-public go-github-com-spf13-jwalterweatherman
3703 (package 3678 (package
3704 (name "go-github-com-spf13-jwalterweatherman") 3679 (name "go-github-com-spf13-jwalterweatherman")