Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
541 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
bundlerEnv,
ruby,
bundlerUpdateScript,
}:
bundlerEnv {
inherit ruby;
pname = "teamocil";
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "teamocil";
meta = with lib; {
description = "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
];
mainProgram = "teamocil";
};
}