1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 04:20:44 +02:00

gnu: Add go-suah-dev-protect.

* gnu/packages/golang-xyz.scm (go-suah-dev-protect): New variable.

Change-Id: Idf224b6571da2aefb99811ee3cd9fead67614d61
This commit is contained in:
Artyom V. Poptsov 2024-12-17 22:39:41 +03:00
parent 163843c78e
commit e518d2f854
No known key found for this signature in database
GPG key ID: 935EBE0736DC857E

View file

@ -8842,6 +8842,32 @@ go-github-com-orisano-pixelmatch source.")))
" This package provides an command line interface (CLI)
tool."))))
(define-public go-suah-dev-protect
(package
(name "go-suah-dev-protect")
(version "1.2.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/qbit/protect")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1f36w2435xivggl4d31813ggk37ya9v8q6w8ygbp35ypzwfgzlh3"))))
(build-system go-build-system)
(arguments
(list
#:import-path "suah.dev/protect"))
(home-page "https://codeberg.org/qbit/protect")
(synopsis "Wrapper for OpenBSD's pledge and unveil system calls.")
(description
"Package protect is a wrapper for OpenBSD's @code{pledge} and @code{unveil}
system calls.
It allows one to safely call Unveil / Pledge on non-OpenBSD operating systems.")
(license license:isc)))
(define-public go-tengo
(package
(inherit go-github-com-d5-tengo-v2)