Added tmuxinator (using bundlerEnv)

This commit is contained in:
Jonathan Glines
2015-02-20 20:49:45 -07:00
parent 9775f462b7
commit 0e9ebcbc4d
5 changed files with 64 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ 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 = with licenses; mit;
maintainers = with maintainers; [ auntie ];
platforms = platforms.unix;
};
}