nixpkgs/pkgs/servers/monitoring/sensu/default.nix

18 lines
442 B
Nix
Raw Normal View History

2017-02-22 13:18:05 +01:00
{ lib, bundlerEnv, ruby }:
2017-02-22 13:18:05 +01:00
bundlerEnv rec {
name = "sensu-${version}";
version = (import ./gemset.nix).sensu.version;
2017-02-22 13:18:05 +01:00
inherit ruby;
gemdir = ./.;
2017-02-22 13:18:05 +01:00
meta = with lib; {
description = "A monitoring framework that aims to be simple, malleable, and scalable";
homepage = https://sensuapp.org/;
2017-02-22 13:18:05 +01:00
license = licenses.mit;
maintainers = with maintainers; [ theuni peterhoeg ];
platforms = platforms.unix;
};
}