nixpkgs/pkgs/tools/system/foreman/default.nix

16 lines
367 B
Nix
Raw Normal View History

2016-10-02 22:38:54 +00:00
{ bundlerEnv, lib, ruby }:
2016-03-17 10:42:36 +00:00
2016-10-02 22:38:54 +00:00
bundlerEnv {
inherit ruby;
2016-10-14 15:56:42 +00:00
pname = "foreman";
2016-10-02 22:38:54 +00:00
gemdir = ./.;
2016-03-17 10:42:36 +00:00
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;
};
}