about summary refs log tree commit diff stats
path: root/pkgs/by-name/ts/tskm/package.nix
blob: 1f206abfa0bf8b981b73be6a7454df124c5f1e22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  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";
  };
})