Files
ke/default.nix
Kyle Isom 329b92f382
Some checks failed
Release / Bump Homebrew formula (push) Has been cancelled
bump version
2025-11-25 22:33:50 -08:00

35 lines
434 B
Nix

{
lib,
stdenv,
cmake,
installShellFiles,
...
}:
stdenv.mkDerivation {
pname = "ke";
version = "1.4.0";
src = lib.cleanSource ./.;
nativeBuildInputs = [
cmake
installShellFiles
];
cmakeFlags = [
"-DENABLE_ASAN=on"
"-DCMAKE_BUILD_TYPE=Debug"
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ke $out/bin/
installManPage ../ke.1
runHook postInstall
'';
}