2015-02-21 04:49:45 +01:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
name = "tmuxinator-0.6.9";
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
gemfile = ./Gemfile;
|
|
|
|
lockfile = ./Gemfile.lock;
|
|
|
|
gemset = ./gemset.nix;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Manage complex tmux sessions easily";
|
|
|
|
homepage = https://github.com/tmuxinator/tmuxinator;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.mit;
|
2015-02-21 04:49:45 +01:00
|
|
|
maintainers = with maintainers; [ auntie ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|