1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00
nixpkgs/pkgs/servers/monitoring/sensu/default.nix
2017-01-18 00:52:50 +01:00

17 lines
400 B
Nix

{ lib, bundlerEnv, ruby }:
bundlerEnv {
name = "sensu-0.17.1";
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 ];
platforms = platforms.unix;
};
}