me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/apparmor.scm (libapparmor)[supported-systems]: New
field.
master
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
1 changed files with 4 additions and 1 deletions

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