2019-07-22 14:02:47 +02:00
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
2018-09-28 22:59:03 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
bundlerEnv {
|
2018-09-28 22:59:03 +02:00
|
|
|
inherit ruby;
|
|
|
|
pname = "teamocil";
|
|
|
|
gemdir = ./.;
|
|
|
|
|
2019-07-22 14:02:47 +02:00
|
|
|
passthru.updateScript = bundlerUpdateScript "teamocil";
|
|
|
|
|
2018-09-28 22:59:03 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A simple tool used to automatically create windows and panes in tmux with YAML files";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/remiprev/teamocil";
|
2018-09-28 22:59:03 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [
|
2021-01-19 22:20:11 +01:00
|
|
|
zachcoyle
|
2019-07-22 14:02:47 +02:00
|
|
|
nicknovitski
|
2018-09-28 22:59:03 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|