mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
21 lines
536 B
Nix
21 lines
536 B
Nix
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
|
|
|
bundlerEnv rec {
|
|
inherit ruby;
|
|
pname = "teamocil";
|
|
gemdir = ./.;
|
|
|
|
passthru.updateScript = bundlerUpdateScript "teamocil";
|
|
|
|
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
|
|
nicknovitski
|
|
];
|
|
};
|
|
}
|