nixpkgs/pkgs/servers/monitoring/sensu/default.nix
Bjørn Forsman 64d058f472 Revert "sensu: 0.17.1 -> 0.28.0"
This reverts commit 4588f94396.

Because it breaks nixpkgs evaluation.
2017-02-24 15:13:57 +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;
};
}