2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
2018-09-28 21:59:03 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
bundlerEnv {
|
2018-09-28 21:59:03 +01:00
|
|
|
inherit ruby;
|
|
|
|
pname = "teamocil";
|
|
|
|
gemdir = ./.;
|
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "teamocil";
|
|
|
|
|
2018-09-28 21:59:03 +01:00
|
|
|
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
|
2019-07-22 13:02:47 +01:00
|
|
|
nicknovitski
|
2018-09-28 21:59:03 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|