1{ stdenv, lib, bundlerEnv, ruby }:
2
3bundlerEnv {
4 name = "tmuxinator-0.6.9";
5
6 inherit ruby;
7 gemfile = ./Gemfile;
8 lockfile = ./Gemfile.lock;
9 gemset = ./gemset.nix;
10
11 meta = with lib; {
12 description = "Manage complex tmux sessions easily";
13 homepage = https://github.com/tmuxinator/tmuxinator;
14 license = licenses.mit;
15 maintainers = with maintainers; [ auntie ];
16 platforms = platforms.unix;
17 };
18}