{ rustPlatform, installShellFiles, makeWrapper, lib, # Dependencies taskwarrior3, git, rofi, firefox, }: rustPlatform.buildRustPackage (finalAttrs: { pname = "tskm"; version = "0.1.0"; src = ./.; cargoLock = { lockFile = ./Cargo.lock; }; env = { SHELL_COMPLETION_DIR = "./shell"; }; buildInputs = [ taskwarrior3 git rofi firefox ]; nativeBuildInputs = [ installShellFiles makeWrapper ]; postInstall = '' installShellCompletion --cmd tskm \ --bash ./shell/tskm.bash \ --fish ./shell/tskm.fish \ --zsh ./shell/_tskm # NOTE: We cannot clear the path, because we need access to the $EDITOR. <2025-04-04> wrapProgram $out/bin/tskm \ --prefix PATH : ${lib.makeBinPath finalAttrs.buildInputs} ''; meta = { mainProgram = "tskm"; }; })