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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, gettext, libsepol, libselinux, libsemanage, libxcrypt }:
2015-08-01 03:00:57 +03:00
stdenv.mkDerivation rec {
pname = "policycoreutils";
version = "3.6";
inherit (libsepol) se_url;
src = fetchurl {
url = "${se_url}/${version}/policycoreutils-${version}.tar.gz";
hash = "sha256-p2rEMepAo1qDFkzpAHkJwcbBL9EFZif2IhROSnBcCiw=";
};
2015-08-01 03:00:57 +03:00
postPatch = ''
# Fix install references
2018-03-14 22:06:58 +03:00
substituteInPlace po/Makefile \
--replace /usr/bin/install install --replace /usr/share /share
substituteInPlace newrole/Makefile --replace /usr/share /share
'';
2018-03-14 22:06:58 +03:00
nativeBuildInputs = [ gettext ];
buildInputs = [ libsepol libselinux libsemanage libxcrypt ];
2019-08-17 20:09:12 +03:00
makeFlags = [
"PREFIX=$(out)"
"SBINDIR=$(out)/bin"
2019-08-17 20:09:12 +03:00
"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;
};
}