summary refs log tree commit diff
path: root/pkgs/servers/monitoring/sensu/default.nix
blob: 2785898bed560a2106436d885d225316db6d4c42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  { lib, bundlerEnv, ruby }:

  bundlerEnv {
    name = "sensu-0.17.1";

    inherit ruby;
    gemfile = ./Gemfile;
    lockfile = ./Gemfile.lock;
    gemset = ./gemset.nix;

    meta = with lib; {
      description = "A monitoring framework that aims to be simple, malleable,
and scalable.";
      homepage    = http://sensuapp.org/;
      license     = with licenses; mit;
      maintainers = with maintainers; [ theuni ];
      platforms   = platforms.unix;
    };
  }