Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
405 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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;
mainProgram = "foreman";
};
}