3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01: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
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

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))