mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
This is a follow up commit 87661cea77: "Pin
some golang packages to use go-1.23" wich adds "-vet=off" to test args
so that make check works with go 1.24+.
* gnu/packages/authentication.scm: (oauth2l)
* gnu/packages/bioinformatics.scm: (go-github-com-biogo-store)
* gnu/packages/containers.scm: (dive)
* gnu/packages/databases.scm: (go-github-com-cockroachdb-pebble)
* gnu/packages/education.scm: (exercism)
* gnu/packages/file-systems.scm: (fscrypt, gocryptfs)
* gnu/packages/golang-check.scm: (go-github-com-cheekybits-is,
go-github-com-coder-quartz, go-github-com-data-dog-go-sqlmock,
go-github-com-google-gofuzz, go-github-com-matryer-is,
go-github-com-onsi-ginkgo, go-github-com-onsi-ginkgo-v2,
go-github-com-onsi-gomega, go-github-com-otiai10-mint,
go-github-com-smarty-assertions, go-github-com-smarty-gunit,
go-github-com-warpfork-go-testmark, go-sigs-k8s-io-randfill)
* gnu/packages/golang-crypto.scm: (go-github-com-99designs-keyring,
go-github-com-blanu-dust, go-github-com-chmduquesne-rollinghash)
* gnu/packages/golang-maths.scm: (go-github-com-montanaflynn-stats,
go-gonum-org-v1-gonum)
* gnu/packages/golang-vcs.scm: (go-github-com-jiangxin-goconfig)
* gnu/packages/golang-web.scm: (go-git-sr-ht-emersion-gqlclient,
go-git-sr-ht-rockorager-go-jmap, go-github-com-apex-log,
go-github-com-apex-log-bootstrap, go-github-com-cenkalti-backoff-v4,
go-github-com-digitalocean-godo, go-github-com-donovanhide-eventsource,
go-github-com-emersion-go-smtp, go-github-com-flosch-pongo2-v6,
go-github-com-go-chi-chi-v5, go-github-com-go-jose-go-jose-v3,
go-github-com-go-openapi-errors, go-github-com-go-openapi-runtime,
go-github-com-go-openapi-validate, go-github-com-gobwas-httphead,
go-github-com-goccy-go-json, go-github-com-gogo-protobuf,
go-github-com-google-safehtml, go-github-com-jcmturner-gokrb5-v8,
go-github-com-jhillyerd-enmime, go-github-com-jlaffaye-ftp,
go-github-com-jmespath-go-jmespath, go-github-com-json-iterator-go,
go-github-com-labbsr0x-goh,
go-github-com-makeworld-the-better-one-go-gemini,
go-github-com-ovn-kubernetes-libovsdb, go-github-com-pascaldekloe-goe,
go-github-com-perimeterx-marshmallow, go-github-com-pion-stun,
go-github-com-pion-stun-v2, go-github-com-pion-stun-v3,
go-github-com-rcrowley-go-metrics, go-github-com-swaggo-swag,
go-github-com-urfave-negroni, go-github-com-urfave-negroni-v3,
go-github-com-xeipuuv-gojsonschema, go-maunium-net-go-mautrix)
* gnu/packages/golang-xyz.scm: (go-github-com-d5-tengo-v2,
go-github-com-godbus-dbus, go-github-com-hashicorp-hcl-v2,
go-github-com-itchyny-go-flags, go-github-com-jedib0t-go-pretty-v6,
go-github-com-jessevdk-go-flags, go-github-com-mattn-go-shellwords,
go-github-com-moby-sys-mountinfo, go-github-com-nlpodyssey-spago,
go-github-com-pingcap-errors, go-github-com-pmezard-go-difflib,
go-github-com-russross-blackfriday-v2, go-go-mongodb-org-mongo-driver,
go-go4-org, go-k8s-io-klog-v2, go-sigs-k8s-io-kustomize-kyaml,
go-zgo-at-zstd)
* gnu/packages/irc.scm: (soju)
* gnu/packages/password-utils.scm: (aws-vault)
* gnu/packages/text-editors.scm: (micro)
* gnu/packages/version-control.scm: (hut)
* gnu/packages/video.scm: (ytarchive)
* gnu/packages/web-browsers.scm: (bombadillo)
* gnu/packages/web.scm: (webhook)
Change-Id: If7ffae01869404796467f8deed29a03e7a7020d7
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
241 lines
9.4 KiB
Scheme
241 lines
9.4 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
||
;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||
;;; Copyright © 2019, 2020, 2022 Ricardo Wurmus <rekado@elephly.net>
|
||
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
|
||
;;;
|
||
;;; This file is part of GNU Guix.
|
||
;;;
|
||
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
||
;;; under the terms of the GNU General Public License as published by
|
||
;;; the Free Software Foundation; either version 3 of the License, or (at
|
||
;;; your option) any later version.
|
||
;;;
|
||
;;; GNU Guix is distributed in the hope that it will be useful, but
|
||
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
;;; GNU General Public License for more details.
|
||
;;;
|
||
;;; You should have received a copy of the GNU General Public License
|
||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||
|
||
(define-module (gnu packages authentication)
|
||
#:use-module (gnu packages)
|
||
#:use-module (gnu packages autotools)
|
||
#:use-module (gnu packages documentation)
|
||
#:use-module (gnu packages gnupg)
|
||
#:use-module (gnu packages golang)
|
||
#:use-module (gnu packages golang-build)
|
||
#:use-module (gnu packages golang-web)
|
||
#:use-module (gnu packages golang-xyz)
|
||
#:use-module (gnu packages linux)
|
||
#:use-module (gnu packages pkg-config)
|
||
#:use-module (gnu packages security-token)
|
||
#:use-module (gnu packages tls)
|
||
#:use-module (gnu packages xml)
|
||
#:use-module (guix build-system cmake)
|
||
#:use-module (guix build-system gnu)
|
||
#:use-module (guix build-system go)
|
||
#:use-module (guix download)
|
||
#:use-module (guix gexp)
|
||
#:use-module (guix git-download)
|
||
#:use-module ((guix licenses) #:prefix license:)
|
||
#:use-module (guix packages))
|
||
|
||
(define-public libcotp
|
||
(package
|
||
(name "libcotp")
|
||
(version "3.1.0")
|
||
(source
|
||
(origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url "https://github.com/paolostivanin/libcotp")
|
||
(commit (string-append "v" version))))
|
||
(file-name (git-file-name name version))
|
||
(sha256
|
||
(base32 "1lw15blzzds3qq4ydhi6fsk189p1rbvzy5fzz4r3fv6wlmcyyprs"))))
|
||
(build-system cmake-build-system)
|
||
(arguments `(#:tests? #f))
|
||
;; TODO: tests:
|
||
;; Tests can be built with -DBUILD_TESTS=on.
|
||
;; Tests don't have a general `check` target so they have to be run manually.
|
||
;; Tests require `criterion`, which is not included in guix and has several
|
||
;; bundled dependencies.
|
||
(inputs (list libgcrypt))
|
||
(native-inputs (list pkg-config))
|
||
(home-page "https://github.com/paolostivanin/libcotp")
|
||
(synopsis "One-Time Passwords")
|
||
(description "This package provides a library to generate
|
||
@acronym{HOTP, HMAC-base One-Time Password}s as specified in RFC 4226 and
|
||
@acronym{TOTP, Time-based One-Time Password}s as specified in RFC 6238.")
|
||
(license license:asl2.0)))
|
||
|
||
(define-public oath-toolkit
|
||
(package
|
||
(name "oath-toolkit")
|
||
(version "2.6.11")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (string-append "https://download.savannah.nongnu.org/releases/"
|
||
name "/" name "-" version ".tar.gz"))
|
||
(sha256
|
||
(base32 "1d1c3r1jhd72l5ppsfa9wvvm8kffzs4k2v2qn0xc9x26bd52llgw"))))
|
||
(build-system gnu-build-system)
|
||
(arguments
|
||
;; TODO ‘--enable-pskc’ causes xmlsec-related test suite failures.
|
||
`(#:configure-flags
|
||
(list "--enable-pam"
|
||
"--enable-pskc"
|
||
"--with-xmlsec-crypto-engine=openssl")
|
||
#:phases
|
||
(modify-phases %standard-phases
|
||
(add-after 'install 'delete-static-libraries
|
||
(lambda* (#:key outputs #:allow-other-keys)
|
||
(let* ((out (assoc-ref outputs "out"))
|
||
(lib (string-append out "/lib")))
|
||
(for-each delete-file (find-files lib "\\.a$"))))))))
|
||
(native-inputs
|
||
(list pkg-config
|
||
;; XXX: Perhaps this should be propagated from xmlsec.
|
||
libltdl))
|
||
(inputs
|
||
(list linux-pam openssl xmlsec-openssl))
|
||
(home-page "https://www.nongnu.org/oath-toolkit/")
|
||
(synopsis "@acronym{OTP, one-time password} components")
|
||
(description
|
||
"The @acronym{OATH, Open AuTHentication} Toolkit provides various
|
||
components for building @acronym{OTP, One-Time Password} authentication systems:
|
||
|
||
@itemize
|
||
@item @command{oathtool}, a command-line tool for generating & validating OTPs.
|
||
@item @code{liboath}, a C library for OATH handling.
|
||
@item @command{pskctool}, a command-line tool for manipulating secret key
|
||
files in the @acronym{PSKC, Portable Symmetric Key Container} format
|
||
described in RFC6030.
|
||
@item @code{libpskc}, a shared and static C library for PSKC handling.
|
||
@item @code{pam_oath}, a PAM module for pluggable login authentication.
|
||
@end itemize
|
||
|
||
Supported technologies include the event-based @acronym{HOTP, Hash-based Message
|
||
Authentication Code One-Time Password} algorithm (RFC4226), the time-based
|
||
@acronym{TOTP, Time-based One-Time Password} algorithm (RFC6238), and
|
||
PSKC (RFC6030) to manage secret key data.")
|
||
(license (list license:lgpl2.1+ ; the libraries (liboath/ & libpskc/)
|
||
license:gpl3+)))) ; the tools (everything else)
|
||
|
||
(define-public oauth2l
|
||
(package
|
||
(name "oauth2l")
|
||
(version "1.3.3")
|
||
(source
|
||
(origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url "https://github.com/google/oauth2l")
|
||
(commit (string-append "v" version))))
|
||
(file-name (git-file-name name version))
|
||
(sha256
|
||
(base32 "0qpgbbyjvvdw944d7ppa9ccmcp0gyyc9ik0bhq8agsia40biagwc"))
|
||
(snippet
|
||
#~(begin (use-modules (guix build utils))
|
||
(delete-file-recursively "vendor")))))
|
||
(build-system go-build-system)
|
||
(arguments
|
||
(list
|
||
#:install-source? #f
|
||
#:import-path "github.com/google/oauth2l"
|
||
#:test-flags
|
||
#~(list "-skip"
|
||
;; Tests requiring network access.
|
||
(string-join
|
||
(list "Test2LOFlow/curl._2lo"
|
||
"Test3LOFlow/curl._3lo"
|
||
"Test3LOFlow/fetch._3lo_cached"
|
||
"Test3LOLoopbackFlow/curl._3lo_loopback"
|
||
"Test3LOLoopbackFlow/fetch._3lo_loopback_cached"
|
||
"TestCLI/info._invalid_token"
|
||
"TestSSOFlow/fetch._sso"
|
||
"TestSSOFlow/fetch._sso._old_interface"
|
||
"TestServiceAccountImpersonationFlow/fetch._sso.*"
|
||
"TestStsFlow/fetch._2lo._sts"
|
||
"TestStsFlow/fetch._sso._sts")
|
||
"|")
|
||
;; go 1.24 runs -vet by default, but oauth2l isn't ready
|
||
"-vet=off")
|
||
#:phases
|
||
#~(modify-phases %standard-phases
|
||
(add-before 'check 'pre-check
|
||
(lambda _
|
||
(setenv "HOME" "/tmp"))))))
|
||
(native-inputs
|
||
(list go-github-com-google-uuid
|
||
go-github-com-jessevdk-go-flags
|
||
go-golang-org-x-oauth2))
|
||
(home-page "https://github.com/google/oauth2l")
|
||
(synopsis "Simple CLI for interacting with Google API authentication")
|
||
(description
|
||
"@code{oauth2l} (pronounced ``oauth tool'') is a simple command-line tool
|
||
for working with @url{https://developers.google.com/identity/protocols/OAuth2,
|
||
Google OAuth 2.0} written in Go. Its primary use is to fetch and print OAuth
|
||
2.0 access tokens, which can be used with other command-line tools and
|
||
scripts.")
|
||
(license license:asl2.0)))
|
||
|
||
(define-public yubico-pam
|
||
(package
|
||
(name "yubico-pam")
|
||
(version "2.27")
|
||
(source (origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url "https://github.com/Yubico/yubico-pam")
|
||
(commit version)))
|
||
(file-name (git-file-name name version))
|
||
(sha256
|
||
(base32
|
||
"0hb773zlf11xz4bwmsqv2mq5d4aq2g0crdr5cp9xwc4ivi5gd4kg"))))
|
||
(build-system gnu-build-system)
|
||
(arguments
|
||
;; The pam_test fails because ykclient fails to build a Curl handle.
|
||
'(#:make-flags '("TESTS=util_test")))
|
||
(inputs
|
||
(list linux-pam libyubikey ykclient yubikey-personalization))
|
||
(native-inputs
|
||
(list autoconf automake libtool asciidoc pkg-config))
|
||
(home-page "https://developers.yubico.com/yubico-pam")
|
||
(synopsis "Yubico pluggable authentication module")
|
||
(description "The Yubico PAM module provides an easy way to integrate the
|
||
YubiKey into your existing user authentication infrastructure.")
|
||
(license license:bsd-2)))
|
||
|
||
(define-public pamtester
|
||
(package
|
||
(name "pamtester")
|
||
(version "0.1.2")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (string-append
|
||
"mirror://sourceforge/pamtester/pamtester/"
|
||
version "/pamtester-" version ".tar.gz"))
|
||
(sha256
|
||
(base32 "1mdj1wj0adcnx354fs17928yn2xfr1hj5mfraq282dagi873sqw3"))))
|
||
(build-system gnu-build-system)
|
||
(arguments
|
||
`(#:phases
|
||
(modify-phases %standard-phases
|
||
(add-after 'unpack 'force-reconfigure
|
||
(lambda _ (delete-file "configure"))))))
|
||
(native-inputs
|
||
(list autoconf automake libtool pkg-config))
|
||
(inputs
|
||
(list linux-pam))
|
||
(home-page "https://pamtester.sourceforge.net/")
|
||
(synopsis "Utility for testing pluggable authentication modules (PAM) facility")
|
||
(description
|
||
"Pamtester is a tiny utility program to test the pluggable authentication
|
||
modules (PAM) facility, specifically designed to help PAM module authors to
|
||
intensively test their own modules.")
|
||
(license license:bsd-3)))
|