gnu: go-github-com-gorilla-sessions: Move to (gnu packages golang-web).
* gnu/packages/golang.scm (go-github-com-gorilla-sessions): Move from here... * gnu/packages/golang-web.scm: ...to here. Change-Id: Ic4cc128724583a7c50102e476c6b96ea4e322bddmaster
parent
1754f847aa
commit
b870f17a83
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2022 Giacomo Leidi <goodoldpaul@autistici.org>
|
;;; Copyright © 2022 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||||
;;; Copyright © 2022 muradm <mail@muradm.net>
|
;;; Copyright © 2022 muradm <mail@muradm.net>
|
||||||
|
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -236,6 +237,32 @@ cookie values")
|
||||||
encrypted cookie values for Go web applications.")
|
encrypted cookie values for Go web applications.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-gorilla-sessions
|
||||||
|
(package
|
||||||
|
(name "go-github-com-gorilla-sessions")
|
||||||
|
(version "1.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/gorilla/sessions")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1zjw2s37yggk9231db0vmgs67z8m3am8i8l4gpgz6fvlbv52baxp"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/gorilla/sessions"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-gorilla-securecookie))
|
||||||
|
(home-page "https://github.com/gorilla/sessions")
|
||||||
|
(synopsis "Manage user sessions in web applications")
|
||||||
|
(description
|
||||||
|
"This package that provides infrastructure for creating and managing user
|
||||||
|
sessions in web applications. It supports cookie and filesystem-based
|
||||||
|
sessions, flash messages, custom backends, and more.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-gorilla-websocket
|
(define-public go-github-com-gorilla-websocket
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-gorilla-websocket")
|
(name "go-github-com-gorilla-websocket")
|
||||||
|
|
|
@ -4867,31 +4867,6 @@ the @code{c2go} tool at
|
||||||
@url{https://github.com/andybalholm/c2go,https://github.com/andybalholm/c2go}.")
|
@url{https://github.com/andybalholm/c2go,https://github.com/andybalholm/c2go}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-gorilla-sessions
|
|
||||||
(package
|
|
||||||
(name "go-github-com-gorilla-sessions")
|
|
||||||
(version "1.2.1")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/gorilla/sessions")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1zjw2s37yggk9231db0vmgs67z8m3am8i8l4gpgz6fvlbv52baxp"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/gorilla/sessions"))
|
|
||||||
(propagated-inputs (list go-github-com-gorilla-securecookie))
|
|
||||||
(home-page "https://github.com/gorilla/sessions")
|
|
||||||
(synopsis "Manage user sessions in web applications")
|
|
||||||
(description
|
|
||||||
"This package that provides infrastructure for creating and
|
|
||||||
managing user sessions in web applications. It supports cookie and
|
|
||||||
filesystem-based sessions, flash messages, custom backends, and more.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-github-com-gorilla-csrf
|
(define-public go-github-com-gorilla-csrf
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-gorilla-csrf")
|
(name "go-github-com-gorilla-csrf")
|
||||||
|
|
Reference in New Issue