1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: libapparmor: Restrict supported systems to GNU/Linux.

* gnu/packages/apparmor.scm (libapparmor)[supported-systems]: New
field.
This commit is contained in:
Ludovic Courtès
2022-12-04 22:17:09 +01:00
parent cbab7c1b3c
commit 84424ae3c9

View File

@@ -109,7 +109,10 @@ AppArmor supplements the traditional Unix discretionary access control (DAC)
model by providing mandatory access control (MAC). It has been included in
the mainline Linux kernel since version 2.6.36 and its development has been
supported by Canonical since 2009.")
(license license:lgpl2.1)))
(license license:lgpl2.1)
(supported-systems (filter (lambda (system)
(string-suffix? "-linux" system))
%supported-systems))))
(define-public apparmor
(let ((base libapparmor))