depot/third_party/nixpkgs/pkgs/tools/misc/teamocil/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
533 B
Nix

{ 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
];
};
}