nixpkgs/pkgs/os-specific/linux/policycoreutils/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, gettext, libsepol, libselinux, libsemanage }:
2015-08-01 00:00:57 +00:00
stdenv.mkDerivation rec {
pname = "policycoreutils";
2019-08-17 17:09:12 +00:00
version = "2.9";
inherit (libsepol) se_release se_url;
src = fetchurl {
url = "${se_url}/${se_release}/policycoreutils-${version}.tar.gz";
2019-08-17 17:09:12 +00:00
sha256 = "0yqg5ws5gbl1cbn8msxdk1c3ilmmx58qg5dx883kqyq0517k8g65";
};
2015-08-01 00:00:57 +00:00
postPatch = ''
# Fix install references
2018-03-14 19:06:58 +00:00
substituteInPlace po/Makefile \
--replace /usr/bin/install install --replace /usr/share /share
substituteInPlace newrole/Makefile --replace /usr/share /share
sed -i -e '39i#include <crypt.h>' run_init/run_init.c
'';
2018-03-14 19:06:58 +00:00
nativeBuildInputs = [ gettext ];
buildInputs = [ libsepol libselinux libsemanage ];
2019-08-17 17:09:12 +00:00
makeFlags = [
"PREFIX=$(out)"
"SBINDIR=$(out)/sbin"
"ETCDIR=$(out)/etc"
"BASHCOMPLETIONDIR=$out/share/bash-completion/completions"
"LOCALEDIR=$(out)/share/locale"
"MAN5DIR=$(out)/share/man/man5"
];
meta = with lib; {
description = "SELinux policy core utilities";
license = licenses.gpl2;
inherit (libsepol.meta) homepage platforms maintainers;
};
}