4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, gettext, libsepol, libselinux, libsemanage }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "policycoreutils";
|
|
version = "2.9";
|
|
inherit (libsepol) se_release se_url;
|
|
|
|
src = fetchurl {
|
|
url = "${se_url}/${se_release}/policycoreutils-${version}.tar.gz";
|
|
sha256 = "0yqg5ws5gbl1cbn8msxdk1c3ilmmx58qg5dx883kqyq0517k8g65";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Fix install references
|
|
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
|
|
'';
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
buildInputs = [ libsepol libselinux libsemanage ];
|
|
|
|
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;
|
|
};
|
|
}
|