Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
21 lines
561 B
Nix
21 lines
561 B
Nix
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
|
|
|
bundlerEnv {
|
|
inherit ruby;
|
|
pname = "teamocil";
|
|
gemdir = ./.;
|
|
|
|
passthru.updateScript = bundlerUpdateScript "teamocil";
|
|
|
|
meta = with lib; {
|
|
description = "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
|
|
nicknovitski
|
|
];
|
|
mainProgram = "teamocil";
|
|
};
|
|
}
|