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

16 lines
367 B
Nix
Raw Normal View History

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