You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

129 lines
4.8 KiB

;; SPDX-FileCopyrightText: 2022 Hilton Chain <hako@ultrarare.space>
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
(define-module (rosenthal packages golang)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system go)
#:use-module (guix git-download)
#:use-module (guix packages))
(define-public go-codeberg-org-codeberg-avatars
(package
(name "go-codeberg-org-codeberg-avatars")
(version "1.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/Codeberg/avatars.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1mmqcij3km4hz4p1s1f2r469yn5za8n0givyd97k0zl45115rvwa"))))
(build-system go-build-system)
(arguments
'(#:import-path "codeberg.org/Codeberg/avatars"))
(home-page "https://codeberg.org/Codeberg/avatars")
(synopsis "Go port of DiceBear Avatars")
(description "This package provides a Go port of DiceBear Avatars.")
(license license:expat)))
(define-public go-github-com-duke-git-lancet-v2
(package
(name "go-github-com-duke-git-lancet-v2")
(version "2.1.13")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/duke-git/lancet")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"19v5hipcdsf2qc3vs0vhyigpjsym27lfxxdhry4ghwz1snf4zai4"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/duke-git/lancet/v2"
;; Source-only package
#:tests? #f
#:phases
(modify-phases %standard-phases
;; Source-only package
(delete 'build))))
(home-page "https://pkg.go.dev/github.com/duke-git/lancet/v2")
(synopsis "Util function library of Go")
(description
"This package provides Lancet, a comprehensive, efficient, and reusable
util function library of Go. Inspired by the java apache common package and
lodash.js.")
(license license:expat)))
(define-public go-github-com-emvi-logbuch
(package
(name "go-github-com-emvi-logbuch")
(version "1.2.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emvi/logbuch")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1l2pn19m04rbx1lzhknyqr0vvcqn7x4qmrgnj4cx80q666mybd9y"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/emvi/logbuch"))
(home-page "https://github.com/emvi/logbuch")
(synopsis "Logbuch")
(description
"Simple Go logging library with support for different output channels
(io.Writer) for each log level. A formatter can be provided to change the log
output formatting.")
(license license:expat)))
(define-public go-github-com-google-gopacket
(package
(name "go-github-com-google-gopacket")
(version "1.1.19")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/google/gopacket")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"048qwm2n0wrpql4qqgd7jyynn3gk069yvqbxnshlayzmbhf87ls4"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/google/gopacket"))
(home-page "https://github.com/google/gopacket")
(synopsis "Packet processing capabilities library")
(description
"This package provides packet processing capabilities for Go.")
(license license:bsd-3)))
(define-public go-github-com-macronut-go-tproxy
(package
(name "go-github-com-macronut-go-tproxy")
(version "0.0.0-20190726054950-ef7efd7f24ed")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/FutureProtocolLab/go-tproxy")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32
"0jibsg0xhsn0h1jq4g9qd4nr58w43y8majlwfri9ffk2cbfrwqdr"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/macronut/go-tproxy"))
(home-page "https://github.com/FutureProtocolLab/go-tproxy")
(synopsis "Linux Transparent Proxy library")
(description
"Golang TProxy provides an easy to use wrapper for the Linux Transparent
Proxy functionality.")
(license license:expat)))