summary refs log tree commit diff
path: root/pkgs/tools/system/foreman/default.nix
blob: ce2f20176290276925b9fdc19f7a4937b17da642 (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;
  };
}