about summary refs log tree commit diff
path: root/pkgs/by-name/sw/swaycwd/package.nix
blob: 50568b3215520374cf5890b484f5ee63a03ff141 (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
{ lib
, buildNimPackage
, fetchFromGitLab
, enableShells ? [ "bash" "zsh" "fish" "sh" "posh" "codium" ]
}:

buildNimPackage (finalAttrs: {
  pname = "swaycwd";
  version = "0.2.1";

  src = fetchFromGitLab {
    owner = "cab404";
    repo = "swaycwd";
    rev = "v${finalAttrs.version}";
    hash = "sha256-R/LnojbA0vBQVivGLaoM0+M4qVJ7vjf4kggB59i896w=";
  };

  preConfigure = ''
    {
      echo 'let enabledShells: seq[string] = @${builtins.toJSON enableShells}'
      echo 'export enabledShells'
    } > src/shells.nim
  '';

  nimFlags = [ "--opt:speed" ];

  meta = with lib; {
    homepage = "https://gitlab.com/cab404/swaycwd";
    description = "Returns cwd for shell in currently focused sway window, or home directory if cannot find shell";
    maintainers = with maintainers; [ cab404 ];
    platforms = platforms.linux;
    license = licenses.gpl3Only;
    mainProgram = "swaycwd";
  };
})