about summary refs log tree commit diff
path: root/pkgs/tools/system/foreman/default.nix
blob: 594947c265a34d051feab153af879dfe89e12b01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, lib, ruby, bundlerEnv, makeWrapper }:

stdenv.mkDerivation rec {
  name = "foreman-${env.gems.foreman.version}";

  env = bundlerEnv {
    inherit ruby;
    name = "${name}-gems";
    gemfile = ./Gemfile;
    lockfile = ./Gemfile.lock;
    gemset = ./gemset.nix;
  };

  phases = ["installPhase"];

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    mkdir -p $out/bin
    makeWrapper ${env}/bin/foreman $out/bin/foreman
  '';

  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;
  };
}