2015-03-30 22:54:21 +01:00
|
|
|
{ lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
name = "sensu-0.17.1";
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
gemfile = ./Gemfile;
|
|
|
|
lockfile = ./Gemfile.lock;
|
|
|
|
gemset = ./gemset.nix;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "A monitoring framework that aims to be simple, malleable, and scalable";
|
2015-03-30 22:54:21 +01:00
|
|
|
homepage = http://sensuapp.org/;
|
|
|
|
license = with licenses; mit;
|
|
|
|
maintainers = with maintainers; [ theuni ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|