1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/tools/misc/teamocil/default.nix
2020-04-10 17:54:53 +01:00

21 lines
534 B
Nix

{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
bundlerEnv {
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
];
};
}