sharlatan pushed a commit to branch go-team
in repository guix.
commit f393b2592829837ece912bed7e7c3607e4045ab6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Feb 13 15:56:10 2025 +0000
gnu: go-github-com-gsterjov-go-libsecret: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-gsterjov-go-libsecret): Move
from here ...
* gnu/packages/golang-crypto.scm: ... to here.
Change-Id: Idd2800d55531b0045d1099272fa0d6a2b3ca27b9
---
gnu/packages/golang-crypto.scm | 26 ++++++++++++++++++++++++++
gnu/packages/golang.scm | 26 --------------------------
2 files changed, 26 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index f38da931ea..3bb244ebdc 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1154,6 +1154,32 @@ intended to (eventually) be 1:1 with the TPM 2.0 spec
@end itemize")
(license license:asl2.0)))
+(define-public go-github-com-gsterjov-go-libsecret
+ (package
+ (name "go-github-com-gsterjov-go-libsecret")
+ (version "0.0.0-20161001094733-a6f4afe4910c")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gsterjov/go-libsecret")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/gsterjov/go-libsecret"))
+ (propagated-inputs
+ (list go-github-com-godbus-dbus))
+ (home-page "https://github.com/gsterjov/go-libsecret")
+ (synopsis "Manage secrets via the @code{Secret Service} DBus API")
+ (description
+ "This native Go library manages secrets via the freedesktop.org
+@code{Secret Service} DBus interface.")
+ (license license:expat)))
+
;; It's not public for purpose, as it contains a lot of golang modules which
;; may be inherited from the single source, but the package itself does not
;; have to be installed directly or linked to other packages..
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b46cf2b315..acadd6da6d 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2236,32 +2236,6 @@ sinks and sources.")
or capture raw audio.")
(license license:expat))))
-(define-public go-github-com-gsterjov-go-libsecret
- (package
- (name "go-github-com-gsterjov-go-libsecret")
- (version "0.0.0-20161001094733-a6f4afe4910c")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/gsterjov/go-libsecret")
- (commit (go-version->git-ref version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7"))))
- (build-system go-build-system)
- (arguments
- (list
- #:import-path "github.com/gsterjov/go-libsecret"))
- (propagated-inputs
- (list go-github-com-godbus-dbus))
- (home-page "https://github.com/gsterjov/go-libsecret")
- (synopsis "Manage secrets via the @code{Secret Service} DBus API")
- (description
- "This native Go library manages secrets via the freedesktop.org
-@code{Secret Service} DBus interface.")
- (license license:expat)))
-
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar