summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-08 23:27:49 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-11 21:42:45 +0100
commitad67dcab4531b917f198b0ef0ca039c1f2f8483b (patch)
tree575b61edfd135146329802c97fcb16364d0f7f04 /gnu/packages
parente16b161adff654ab166970ed093339d426d7df9c (diff)
gnu: oauth2l: Update to 1.3.3.
* gnu/packages/authentication.scm: Import (gnu packages golang). (oauth2l): Update to 1.3.3. [arguments] <go>: Use go-1.23. Change-Id: Ibc757bc7fd6913d96bb23ea2911330498ef25212
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/authentication.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/authentication.scm b/gnu/packages/authentication.scm
index 3a1b981207b..11da1bc7589 100644
--- a/gnu/packages/authentication.scm
+++ b/gnu/packages/authentication.scm
@@ -23,6 +23,7 @@
23 #:use-module (gnu packages autotools) 23 #:use-module (gnu packages autotools)
24 #:use-module (gnu packages documentation) 24 #:use-module (gnu packages documentation)
25 #:use-module (gnu packages gnupg) 25 #:use-module (gnu packages gnupg)
26 #:use-module (gnu packages golang)
26 #:use-module (gnu packages golang-build) 27 #:use-module (gnu packages golang-build)
27 #:use-module (gnu packages golang-web) 28 #:use-module (gnu packages golang-web)
28 #:use-module (gnu packages golang-xyz) 29 #:use-module (gnu packages golang-xyz)
@@ -126,7 +127,7 @@ PSKC (RFC6030) to manage secret key data.")
126(define-public oauth2l 127(define-public oauth2l
127 (package 128 (package
128 (name "oauth2l") 129 (name "oauth2l")
129 (version "1.3.2") 130 (version "1.3.3")
130 (source 131 (source
131 (origin 132 (origin
132 (method git-fetch) 133 (method git-fetch)
@@ -135,13 +136,14 @@ PSKC (RFC6030) to manage secret key data.")
135 (commit (string-append "v" version)))) 136 (commit (string-append "v" version))))
136 (file-name (git-file-name name version)) 137 (file-name (git-file-name name version))
137 (sha256 138 (sha256
138 (base32 "1gm5pbgmz3p0zk5s4gvslp8ixhak3d35pfm7wrw5yk2rcdffr5li")) 139 (base32 "0qpgbbyjvvdw944d7ppa9ccmcp0gyyc9ik0bhq8agsia40biagwc"))
139 (snippet 140 (snippet
140 #~(begin (use-modules (guix build utils)) 141 #~(begin (use-modules (guix build utils))
141 (delete-file-recursively "vendor"))))) 142 (delete-file-recursively "vendor")))))
142 (build-system go-build-system) 143 (build-system go-build-system)
143 (arguments 144 (arguments
144 (list 145 (list
146 #:go go-1.23
145 #:install-source? #f 147 #:install-source? #f
146 #:import-path "github.com/google/oauth2l" 148 #:import-path "github.com/google/oauth2l"
147 #:test-flags 149 #:test-flags