Files
ke/default.nix
Kyle Isom a32ef2ff53
Some checks failed
Release / Bump Homebrew formula (push) Has been cancelled
move to first non-whitespace on next line
2025-11-25 00:20:32 -08:00

28 lines
354 B
Nix

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