linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / teamocil / default.nix
blob5218453d15e3b268fa8716f4bc38fbc272fe2145
1 { lib, bundlerEnv, ruby, bundlerUpdateScript }:
3 bundlerEnv {
4   inherit ruby;
5   pname = "teamocil";
6   gemdir = ./.;
8   passthru.updateScript = bundlerUpdateScript "teamocil";
10   meta = with lib; {
11     description     = "A simple tool used to automatically create windows and panes in tmux with YAML files";
12     homepage        = "https://github.com/remiprev/teamocil";
13     license         = licenses.mit;
14     platforms       = platforms.all;
15     maintainers     = with maintainers; [
16       zachcoyle
17       nicknovitski
18     ];
19   };