nixpkgs/pkgs/tools/misc/tmuxinator/default.nix

19 lines
432 B
Nix
Raw Normal View History

2015-02-21 03:49:45 +00: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;
license = licenses.mit;
2015-02-21 03:49:45 +00:00
maintainers = with maintainers; [ auntie ];
platforms = platforms.unix;
};
}