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

21 lines
533 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
2018-09-28 20:59:03 +00:00
2019-08-13 21:52:01 +00:00
bundlerEnv {
2018-09-28 20:59:03 +00:00
inherit ruby;
pname = "teamocil";
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "teamocil";
2018-09-28 20:59:03 +00: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";
2018-09-28 20:59:03 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [
zachcoyle
nicknovitski
2018-09-28 20:59:03 +00:00
];
};
}