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

bundlerEnv rec {
  name = "sensu-${version}";
  version = (import ./gemset.nix).sensu.version;

  inherit ruby;
  gemdir = ./.;

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