teamocil: init at 1.4.2

This commit is contained in:
Zach Coyle
2018-09-28 16:59:03 -04:00
parent 8a57be9050
commit 68879b36cb
7 changed files with 59 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
inherit ruby;
pname = "teamocil";
gemdir = ./.;
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
];
};
}