fix manpage install with cmake

This commit is contained in:
Jeremy O'Brien
2025-11-25 16:15:04 -05:00
committed by Kyle Isom
parent a51b98c31f
commit 66c79e0762

View File

@@ -11,7 +11,10 @@ stdenv.mkDerivation {
src = lib.cleanSource ./.;
nativeBuildInputs = [ cmake installShellFiles ];
nativeBuildInputs = [
cmake
installShellFiles
];
cmakeFlags = [
"-DENABLE_ASAN=on"
@@ -24,10 +27,8 @@ stdenv.mkDerivation {
mkdir -p $out/bin
cp ke $out/bin/
installManPage ../ke.1
runHook postInstall
'';
postInstall = ''
installManPage ke.1
'';
}