From a19d1f3e0335c40ab59d0d078077ca53e304e47b Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 27 Dec 2024 14:59:36 +0000 Subject: [PATCH] gnu: Add go-github-com-opencontainers-selinux. * gnu/packages/golang-xyz.scm (go-github-com-opencontainers-selinux): New variable. Change-Id: Icc4b4dbd75874280ccacaad86dfd114dc11d01c1 --- gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 43761c50e6..e7ba7475dd 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8947,6 +8947,31 @@ levels per backend and logger.") specification-runtime-spec.") (license license:asl2.0))) +(define-public go-github-com-opencontainers-selinux + (package + (name "go-github-com-opencontainers-selinux") + (version "1.11.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19j92lj9037d94lsls97b9d6cr0y8qavi8rampyawlykcp7gknqz")))) + (build-system go-build-system) + (arguments + (list + #:skip-build? #t + #:import-path "github.com/opencontainers/selinux")) + (propagated-inputs (list go-golang-org-x-sys)) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "Common SELinux implementation") + (description + "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + (define-public go-github-com-openhistogram-circonusllhist (package (name "go-github-com-openhistogram-circonusllhist")