dbd05a5289
Co-authored-by: Cole Helbling <cole.e.helbling@outlook.com>
22 lines
613 B
Nix
22 lines
613 B
Nix
{ stdenv, linuxHeaders, parentWrapperDir, debug ? false }:
|
|
# For testing:
|
|
# $ nix-build -E 'with import <nixpkgs> {}; pkgs.callPackage ./wrapper.nix { parentWrapperDir = "/run/wrappers"; debug = true; }'
|
|
stdenv.mkDerivation {
|
|
name = "security-wrapper";
|
|
buildInputs = [ linuxHeaders ];
|
|
dontUnpack = true;
|
|
hardeningEnable = [ "pie" ];
|
|
CFLAGS = [
|
|
''-DWRAPPER_DIR="${parentWrapperDir}"''
|
|
] ++ (if debug then [
|
|
"-Werror" "-Og" "-g"
|
|
] else [
|
|
"-Wall" "-O2"
|
|
]);
|
|
dontStrip = debug;
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
$CC $CFLAGS ${./wrapper.c} -o $out/bin/security-wrapper
|
|
'';
|
|
}
|