2017-04-14 11:37:58 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
2018-06-20 16:56:36 +02:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2017-04-14 11:37:58 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages selinux)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
#:use-module (guix git-download)
|
2017-04-14 11:37:58 +02:00
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix build-system gnu)
|
2017-04-14 11:47:32 +02:00
|
|
|
#:use-module (guix build-system python)
|
2017-04-14 11:37:58 +02:00
|
|
|
#:use-module (gnu packages)
|
2017-04-14 13:41:34 +02:00
|
|
|
#:use-module (gnu packages admin)
|
2017-04-14 11:45:15 +02:00
|
|
|
#:use-module (gnu packages bison)
|
2017-04-14 13:44:00 +02:00
|
|
|
#:use-module (gnu packages docbook)
|
2017-04-14 11:47:32 +02:00
|
|
|
#:use-module (gnu packages flex)
|
2017-04-14 13:52:22 +02:00
|
|
|
#:use-module (gnu packages gettext)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages networking)
|
2017-04-14 11:47:32 +02:00
|
|
|
#:use-module (gnu packages pcre)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages python)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 14:21:30 +01:00
|
|
|
#:use-module (gnu packages python-xyz)
|
2017-04-14 13:41:34 +02:00
|
|
|
#:use-module (gnu packages swig)
|
2017-04-14 13:44:00 +02:00
|
|
|
#:use-module (gnu packages textutils)
|
|
|
|
#:use-module (gnu packages xml))
|
2017-04-14 11:37:58 +02:00
|
|
|
|
|
|
|
;; Update the SELinux packages together!
|
|
|
|
|
|
|
|
(define-public libsepol
|
|
|
|
(package
|
|
|
|
(name "libsepol")
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
(version "2.7")
|
|
|
|
(source (let ((release "20170804"))
|
2017-04-14 11:37:58 +02:00
|
|
|
(origin
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/SELinuxProject/selinux.git")
|
|
|
|
(commit release)))
|
|
|
|
(file-name (string-append "selinux-" release "-checkout"))
|
2017-04-14 11:37:58 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
"1l1nn8bx08v4cxkw5kb0wgr61rfqj5ra9dh1dy5jslillj93vivq")))))
|
2017-04-14 11:37:58 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; tests require checkpolicy, which requires libsepol
|
|
|
|
#:test-target "test"
|
|
|
|
#:make-flags
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
(list (string-append "PREFIX=" out)
|
|
|
|
(string-append "DESTDIR=" out)
|
|
|
|
(string-append "MAN3DIR=" out "/share/man/man3")
|
|
|
|
(string-append "MAN5DIR=" out "/share/man/man5")
|
|
|
|
(string-append "MAN8DIR=" out "/share/man/man8")
|
|
|
|
(string-append "LDFLAGS=-Wl,-rpath=" out "/lib")
|
|
|
|
"CC=gcc"))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(add-after 'unpack 'enter-dir
|
2018-01-29 22:13:29 +01:00
|
|
|
(lambda _ (chdir ,name) #t))
|
|
|
|
(add-after 'enter-dir 'portability
|
|
|
|
(lambda _
|
|
|
|
(substitute* "src/ibpkeys.c"
|
|
|
|
(("#include \"ibpkey_internal.h\"" line)
|
|
|
|
(string-append line "\n#include <inttypes.h>\n"))
|
|
|
|
(("%#lx") "%#\" PRIx64 \""))
|
|
|
|
#t)))))
|
2017-04-14 11:37:58 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("flex" ,flex)))
|
|
|
|
(home-page "https://selinuxproject.org/")
|
|
|
|
(synopsis "Library for manipulating SELinux policies")
|
|
|
|
(description
|
|
|
|
"The libsepol library provides an API for the manipulation of SELinux
|
|
|
|
binary policies. It is used by @code{checkpolicy} (the policy compiler) and
|
|
|
|
similar tools, and programs such as @code{load_policy}, which must perform
|
|
|
|
specific transformations on binary policies (for example, customizing policy
|
|
|
|
boolean settings).")
|
|
|
|
(license license:lgpl2.1+)))
|
2017-04-14 11:45:15 +02:00
|
|
|
|
|
|
|
(define-public checkpolicy
|
|
|
|
(package (inherit libsepol)
|
|
|
|
(name "checkpolicy")
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; there is no check target
|
|
|
|
#:make-flags
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
(list (string-append "PREFIX=" out)
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
(string-append "LIBSEPOLA="
|
2017-04-14 11:45:15 +02:00
|
|
|
(assoc-ref %build-inputs "libsepol")
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
"/lib/libsepol.a")
|
2017-04-14 11:45:15 +02:00
|
|
|
"CC=gcc"))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
2018-01-29 22:13:29 +01:00
|
|
|
(delete 'portability)
|
2017-04-14 11:45:15 +02:00
|
|
|
(add-after 'unpack 'enter-dir
|
|
|
|
(lambda _ (chdir ,name) #t)))))
|
|
|
|
(inputs
|
|
|
|
`(("libsepol" ,libsepol)))
|
|
|
|
(native-inputs
|
|
|
|
`(("bison" ,bison)
|
|
|
|
("flex" ,flex)))
|
|
|
|
(synopsis "Check SELinux security policy configurations and modules")
|
|
|
|
(description
|
|
|
|
"This package provides the tools \"checkpolicy\" and \"checkmodule\".
|
|
|
|
Checkpolicy is a program that checks and compiles a SELinux security policy
|
|
|
|
configuration into a binary representation that can be loaded into the kernel.
|
|
|
|
Checkmodule is a program that checks and compiles a SELinux security policy
|
|
|
|
module into a binary representation.")
|
|
|
|
;; GPLv2 only
|
|
|
|
(license license:gpl2)))
|
2017-04-14 11:47:32 +02:00
|
|
|
|
|
|
|
(define-public libselinux
|
|
|
|
(package (inherit libsepol)
|
|
|
|
(name "libselinux")
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments libsepol)
|
|
|
|
((#:make-flags flags)
|
|
|
|
`(cons* "PYTHON=python3"
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
(string-append "LIBSEPOLA="
|
|
|
|
(assoc-ref %build-inputs "libsepol")
|
|
|
|
"/lib/libsepol.a")
|
2017-04-14 11:47:32 +02:00
|
|
|
(string-append "PYSITEDIR="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/lib/python"
|
|
|
|
,(version-major+minor (package-version python))
|
|
|
|
"/site-packages/")
|
|
|
|
,flags))
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
2018-01-29 22:13:29 +01:00
|
|
|
(delete 'portability)
|
2017-04-14 11:47:32 +02:00
|
|
|
(replace 'enter-dir
|
|
|
|
(lambda _ (chdir ,name) #t))
|
|
|
|
(add-after 'enter-dir 'remove-Werror
|
|
|
|
(lambda _
|
|
|
|
;; GCC complains about the fact that the output does not (yet)
|
|
|
|
;; have an "include" directory, even though it is referenced.
|
|
|
|
(substitute* '("src/Makefile"
|
|
|
|
"utils/Makefile")
|
|
|
|
(("-Werror ") ""))
|
|
|
|
#t))
|
|
|
|
(add-after 'build 'pywrap
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
2018-03-25 10:52:02 +02:00
|
|
|
(apply invoke "make" "pywrap" make-flags)))
|
2017-04-14 11:47:32 +02:00
|
|
|
(add-after 'install 'install-pywrap
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
2018-03-25 10:52:02 +02:00
|
|
|
(apply invoke "make" "install-pywrap" make-flags)))))))
|
2017-06-15 08:47:00 +02:00
|
|
|
;; These libraries are in "Requires.private" in libselinux.pc.
|
|
|
|
(propagated-inputs
|
2017-04-14 11:47:32 +02:00
|
|
|
`(("libsepol" ,libsepol)
|
2017-06-15 08:47:00 +02:00
|
|
|
("pcre" ,pcre)))
|
|
|
|
;; For pywrap phase
|
|
|
|
(inputs
|
|
|
|
`(("python" ,python-wrapper)))
|
2017-04-14 11:47:32 +02:00
|
|
|
;; These inputs are only needed for the pywrap phase.
|
|
|
|
(native-inputs
|
|
|
|
`(("swig" ,swig)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(synopsis "SELinux core libraries and utilities")
|
|
|
|
(description
|
|
|
|
"The libselinux library provides an API for SELinux applications to get
|
|
|
|
and set process and file security contexts, and to obtain security policy
|
|
|
|
decisions. It is required for any applications that use the SELinux API, and
|
|
|
|
used by all applications that are SELinux-aware. This package also includes
|
|
|
|
the core SELinux management utilities.")
|
|
|
|
(license license:public-domain)))
|
2017-04-14 13:41:34 +02:00
|
|
|
|
|
|
|
(define-public libsemanage
|
|
|
|
(package (inherit libsepol)
|
|
|
|
(name "libsemanage")
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments libsepol)
|
|
|
|
((#:make-flags flags)
|
|
|
|
`(cons* "PYTHON=python3"
|
|
|
|
(string-append "PYSITEDIR="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/lib/python"
|
|
|
|
,(version-major+minor (package-version python))
|
|
|
|
"/site-packages/")
|
|
|
|
,flags))
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
2018-01-29 22:13:29 +01:00
|
|
|
(delete 'portability)
|
2017-04-14 13:41:34 +02:00
|
|
|
(replace 'enter-dir
|
|
|
|
(lambda _ (chdir ,name) #t))
|
|
|
|
(add-after 'build 'pywrap
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
2018-06-20 16:56:36 +02:00
|
|
|
(apply invoke "make" "pywrap" make-flags)))
|
2017-04-14 13:41:34 +02:00
|
|
|
(add-after 'install 'install-pywrap
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
2018-06-20 16:56:36 +02:00
|
|
|
(apply invoke "make" "install-pywrap" make-flags)))))))
|
2017-04-14 13:41:34 +02:00
|
|
|
(inputs
|
|
|
|
`(("libsepol" ,libsepol)
|
|
|
|
("libselinux" ,libselinux)
|
|
|
|
("audit" ,audit)
|
|
|
|
("ustr" ,ustr)
|
|
|
|
;; For pywrap phase
|
|
|
|
("python" ,python-wrapper)))
|
|
|
|
(native-inputs
|
|
|
|
`(("bison" ,bison)
|
|
|
|
("flex" ,flex)
|
|
|
|
;; For pywrap phase
|
|
|
|
("swig" ,swig)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(synopsis "SELinux policy management libraries")
|
|
|
|
(description
|
|
|
|
"The libsemanage library provides an API for the manipulation of SELinux
|
|
|
|
binary policies.")
|
|
|
|
(license license:lgpl2.1+)))
|
2017-04-14 13:44:00 +02:00
|
|
|
|
|
|
|
(define-public secilc
|
|
|
|
(package (inherit libsepol)
|
|
|
|
(name "secilc")
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments libsepol)
|
|
|
|
((#:make-flags flags)
|
|
|
|
`(let ((docbook (assoc-ref %build-inputs "docbook-xsl")))
|
|
|
|
(cons (string-append "XMLTO=xmlto --skip-validation -x "
|
|
|
|
docbook "/xml/xsl/docbook-xsl-"
|
|
|
|
,(package-version docbook-xsl)
|
|
|
|
"/manpages/docbook.xsl")
|
|
|
|
,flags)))
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
2018-01-29 22:13:29 +01:00
|
|
|
(delete 'portability)
|
2017-04-14 13:44:00 +02:00
|
|
|
(replace 'enter-dir
|
|
|
|
(lambda _ (chdir ,name) #t))))))
|
|
|
|
(inputs
|
|
|
|
`(("libsepol" ,libsepol)))
|
|
|
|
(native-inputs
|
|
|
|
`(("xmlto" ,xmlto)
|
|
|
|
("docbook-xsl" ,docbook-xsl)))
|
|
|
|
(synopsis "SELinux common intermediate language (CIL) compiler")
|
|
|
|
(description "The SELinux CIL compiler is a compiler that converts the
|
|
|
|
@dfn{common intermediate language} (CIL) into a kernel binary policy file.")
|
|
|
|
(license license:bsd-2)))
|
2017-04-14 13:48:36 +02:00
|
|
|
|
|
|
|
(define-public python-sepolgen
|
|
|
|
(package (inherit libsepol)
|
|
|
|
(name "python-sepolgen")
|
|
|
|
(arguments
|
|
|
|
`(#:modules ((srfi srfi-1)
|
|
|
|
(guix build gnu-build-system)
|
|
|
|
(guix build utils))
|
|
|
|
,@(substitute-keyword-arguments (package-arguments libsepol)
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
2018-01-29 22:13:29 +01:00
|
|
|
(delete 'portability)
|
2017-04-14 13:48:36 +02:00
|
|
|
(replace 'enter-dir
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
(lambda _ (chdir "python/sepolgen") #t))
|
2017-04-14 13:48:36 +02:00
|
|
|
;; By default all Python files would be installed to
|
|
|
|
;; $out/gnu/store/...-python-.../, so we override the
|
|
|
|
;; PACKAGEDIR to fix this.
|
|
|
|
(add-after 'enter-dir 'fix-target-path
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let ((get-python-version
|
|
|
|
;; FIXME: copied from python-build-system
|
|
|
|
(lambda (python)
|
|
|
|
(let* ((version (last (string-split python #\-)))
|
|
|
|
(components (string-split version #\.))
|
|
|
|
(major+minor (take components 2)))
|
|
|
|
(string-join major+minor ".")))))
|
|
|
|
(substitute* "src/sepolgen/Makefile"
|
|
|
|
(("^PACKAGEDIR.*")
|
|
|
|
(string-append "PACKAGEDIR="
|
|
|
|
(assoc-ref outputs "out")
|
|
|
|
"/lib/python"
|
|
|
|
(get-python-version
|
|
|
|
(assoc-ref inputs "python"))
|
|
|
|
"/site-packages/sepolgen")))
|
|
|
|
(substitute* "src/share/Makefile"
|
|
|
|
(("\\$\\(DESTDIR\\)") (assoc-ref outputs "out"))))
|
|
|
|
#t)))))))
|
|
|
|
(inputs
|
|
|
|
`(("python" ,python-wrapper)))
|
|
|
|
(native-inputs '())
|
|
|
|
(synopsis "Python module for generating SELinux policies")
|
|
|
|
(description
|
|
|
|
"This package contains a Python module that forms the core of
|
|
|
|
@code{audit2allow}, a part of the package @code{policycoreutils}. The
|
|
|
|
sepolgen library contains: Reference Policy Representation, which are Objects
|
|
|
|
for representing policies and the reference policy interfaces. It has objects
|
|
|
|
and algorithms for representing access and sets of access in an abstract way
|
|
|
|
and searching that access. It also has a parser for reference policy
|
|
|
|
\"headers\". It contains infrastructure for parsing SELinux related messages
|
|
|
|
as produced by the audit system. It has facilities for generating policy
|
|
|
|
based on required access.")
|
|
|
|
;; GPLv2 only
|
|
|
|
(license license:gpl2)))
|
2017-04-19 14:43:19 +02:00
|
|
|
|
|
|
|
(define-public python-setools
|
|
|
|
(package
|
|
|
|
(name "python-setools")
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
(version "4.1.1")
|
2017-04-19 14:43:19 +02:00
|
|
|
(source (origin
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/TresysTechnology/setools.git")
|
|
|
|
(commit version)))
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
2017-04-19 14:43:19 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
"0459xxly6zzqc5azcwk3rbbcxvj60dq08f8z6xr05y7dsbb16cg6"))))
|
2017-04-19 14:43:19 +02:00
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; the test target causes a rebuild
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2018-01-29 22:13:29 +01:00
|
|
|
(delete 'portability)
|
2017-04-19 14:43:19 +02:00
|
|
|
(add-after 'unpack 'set-SEPOL-variable
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(setenv "SEPOL"
|
|
|
|
(string-append (assoc-ref inputs "libsepol")
|
|
|
|
"/lib/libsepol.a"))))
|
|
|
|
(add-after 'unpack 'remove-Werror
|
|
|
|
(lambda _
|
|
|
|
(substitute* "setup.py"
|
|
|
|
(("'-Werror',") ""))
|
|
|
|
#t))
|
|
|
|
(add-after 'unpack 'fix-target-paths
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(substitute* "setup.py"
|
|
|
|
(("join\\(sys.prefix")
|
|
|
|
(string-append "join(\"" (assoc-ref outputs "out") "/\"")))
|
|
|
|
#t)))))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("python-networkx" ,python-networkx)))
|
|
|
|
(inputs
|
|
|
|
`(("libsepol" ,libsepol)
|
|
|
|
("libselinux" ,libselinux)))
|
|
|
|
(native-inputs
|
|
|
|
`(("bison" ,bison)
|
|
|
|
("flex" ,flex)
|
|
|
|
("swig" ,swig)))
|
|
|
|
(home-page "https://github.com/TresysTechnology/setools")
|
|
|
|
(synopsis "Tools for SELinux policy analysis")
|
|
|
|
(description "SETools is a collection of graphical tools, command-line
|
|
|
|
tools, and libraries designed to facilitate SELinux policy analysis.")
|
|
|
|
;; Some programs are under GPL, all libraries under LGPL.
|
|
|
|
(license (list license:lgpl2.1+
|
|
|
|
license:gpl2+))))
|
2017-04-14 13:52:22 +02:00
|
|
|
|
|
|
|
(define-public policycoreutils
|
|
|
|
(package (inherit libsepol)
|
|
|
|
(name "policycoreutils")
|
|
|
|
(arguments
|
|
|
|
`(#:test-target "test"
|
|
|
|
#:make-flags
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
(list "CC=gcc"
|
|
|
|
(string-append "PREFIX=" out)
|
|
|
|
(string-append "LOCALEDIR=" out "/share/locale")
|
|
|
|
(string-append "BASHCOMPLETIONDIR=" out
|
|
|
|
"/share/bash-completion/completions")
|
|
|
|
"INSTALL=install -c -p"
|
|
|
|
"INSTALL_DIR=install -d"
|
|
|
|
;; These ones are needed because some Makefiles define the
|
|
|
|
;; directories relative to DESTDIR, not relative to PREFIX.
|
|
|
|
(string-append "SBINDIR=" out "/sbin")
|
|
|
|
(string-append "ETCDIR=" out "/etc")
|
|
|
|
(string-append "SYSCONFDIR=" out "/etc/sysconfig")
|
|
|
|
(string-append "MAN5DIR=" out "/share/man/man5")
|
|
|
|
(string-append "INSTALL_NLS_DIR=" out "/share/locale")
|
|
|
|
(string-append "AUTOSTARTDIR=" out "/etc/xdg/autostart")
|
|
|
|
(string-append "DBUSSERVICEDIR=" out "/share/dbus-1/services")
|
|
|
|
(string-append "SYSTEMDDIR=" out "/lib/systemd")
|
|
|
|
(string-append "INITDIR=" out "/etc/rc.d/init.d")
|
|
|
|
(string-append "SELINUXDIR=" out "/etc/selinux")))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
2018-01-29 22:13:29 +01:00
|
|
|
(delete 'portability)
|
2017-04-14 13:52:22 +02:00
|
|
|
(add-after 'unpack 'enter-dir
|
|
|
|
(lambda _ (chdir ,name) #t))
|
|
|
|
(add-after 'enter-dir 'ignore-/usr-tests
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
;; The Makefile decides to build restorecond only if it finds the
|
|
|
|
;; inotify header somewhere under /usr.
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("ifeq.*") "")
|
|
|
|
(("endif.*") ""))
|
|
|
|
;; Rewrite lookup paths for header files.
|
|
|
|
(substitute* '("newrole/Makefile"
|
|
|
|
"setfiles/Makefile"
|
|
|
|
"run_init/Makefile")
|
|
|
|
(("/usr(/include/security/pam_appl.h)" _ file)
|
|
|
|
(string-append (assoc-ref inputs "pam") file))
|
|
|
|
(("/usr(/include/libaudit.h)" _ file)
|
|
|
|
(string-append (assoc-ref inputs "audit") file)))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
`(("audit" ,audit)
|
2017-04-14 13:52:22 +02:00
|
|
|
("pam" ,linux-pam)
|
|
|
|
("libsepol" ,libsepol)
|
|
|
|
("libselinux" ,libselinux)
|
gnu: Update SELinux packages.
* gnu/packages/selinux.scm (libsepol): Update to 2.7, release 20170804.
[source]: Fetch from git.
(checkpolicy)[arguments]: Set LIBSEPOLA.
(libselinux)[arguments]: Likewise; remove build phase "patch-libsepol-path".
(python-sepolgen)[arguments]: Adjust directory name in "enter-dir".
(python-setools): Update to 4.1.1.
[source]: Fetch from git.
(policycoreutils)[source]: Remove patch.
[arguments]: Remove build phases "fix-glib-cflags",
"fix-linkage-with-libsepol", "fix-target-paths", and "wrap-python-tools".
[inputs]: Remove python-wrapper, python-sepolgen, python-setools, python-ipy,
libcap-ng, pcre, dbus, dbus-glib, and glib.
* gnu/packages/patches/policycoreutils-make-sepolicy-use-python3.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2018-01-25 00:30:37 +01:00
|
|
|
("libsemanage" ,libsemanage)))
|
2017-04-14 13:52:22 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("gettext" ,gettext-minimal)))
|
|
|
|
(synopsis "SELinux core utilities")
|
|
|
|
(description "The policycoreutils package contains the core utilities that
|
|
|
|
are required for the basic operation of an SELinux-enabled GNU system and its
|
|
|
|
policies. These utilities include @code{load_policy} to load policies,
|
|
|
|
@code{setfiles} to label file systems, @code{newrole} to switch roles, and
|
|
|
|
@code{run_init} to run service scripts in their proper context.")
|
|
|
|
(license license:gpl2+)))
|