This is an automated email from the git hooks/post-receive script. guix_mirror_bot pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new 3e0fe237cc gnu: Add firejail-disable-sandbox-check. 3e0fe237cc is described below commit 3e0fe237cc814004f11c516f6fa0e3eba42c3d54 Author: Oleg Pykhalov <go.wig...@gmail.com> AuthorDate: Wed Jun 11 21:58:58 2025 +0300 gnu: Add firejail-disable-sandbox-check. This commit introduces firejail-disable-sandbox-check, a variant of firejail built with --disable-sandbox-check. It's intended for development purposes only. * gnu/packages/linux.scm (firejail-disable-sandbox-check): New variable. Change-Id: Ic638eba54d8ffc49583abf0721b9198c979d22e7 --- gnu/packages/linux.scm | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f54ad67cf1..3482e9d737 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -38,7 +38,7 @@ ;;; Copyright © 2019 Stefan Stefanović <stefanx2o...@gmail.com> ;;; Copyright © 2019-2022 Brice Waegeneire <br...@waegenei.re> ;;; Copyright © 2019 Kei Kebreau <kkebr...@posteo.net> -;;; Copyright © 2020, 2021 Oleg Pykhalov <go.wig...@gmail.com> +;;; Copyright © 2020, 2021, 2025 Oleg Pykhalov <go.wig...@gmail.com> ;;; Copyright © 2020 Pierre Neidhardt <m...@ambrevar.xyz> ;;; Copyright © 2020 Chris Marusich <cmmarus...@gmail.com> ;;; Copyright © 2020 Vincent Legoll <vincent.leg...@gmail.com> @@ -11626,6 +11626,20 @@ work properly.") (filter (cut string-suffix? "-linux" <>) %supported-systems)) (license license:gpl2+))) +(define-public firejail-disable-sandbox-check + (package/inherit + firejail + (name "firejail-disable-sandbox-check") + (arguments + (substitute-keyword-arguments (package-arguments firejail) + ((#:configure-flags flags #~'()) + #~(append #$flags + (list "--disable-sandbox-check"))))) + (description + (string-append (package-description firejail) + " Builded with @code{--disable-sandbox-check}, which is + only intended for development.")))) + (define-public edac-utils (package (name "edac-utils")