summary refs log tree commit diff
path: root/pkgs/tools/misc/teamocil/default.nix
blob: a5e356edbf481c791d062e6b7a57a2743feff8ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:

bundlerEnv {
  inherit ruby;
  pname = "teamocil";
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "teamocil";

  meta = with lib; {
    description     = "A simple tool used to automatically create windows and panes in tmux with YAML files";
    homepage        = https://github.com/remiprev/teamocil;
    license         = licenses.mit;
    platforms       = platforms.all;
    maintainers     = with maintainers; [
      zachcoyle 
      nicknovitski
    ];
  };
}