18 lines
441 B
Nix
18 lines
441 B
Nix
{ 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;
|
|
};
|
|
}
|