summary refs log tree commit diff
path: root/pkgs/tools/system/foreman/default.nix
blob: e97d71f5c84abdee62d678ba06322e2fd703a673 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ bundlerEnv, lib, ruby }:

bundlerEnv {
  inherit ruby;
  pname = "foreman";
  gemdir = ./.;

  meta = with lib; {
    description = "Process manager for applications with multiple components";
    homepage = https://github.com/ddollar/foreman;
    license = licenses.mit;
    maintainers = with maintainers; [ zimbatm ];
    platforms = ruby.meta.platforms;
  };
}