summary refs log tree commit diff
path: root/pkgs/tools/misc/riemann-tools/default.nix
blob: 92e347a044cad9a5db33985b8682356d8e01c727 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, bundlerEnv }:

bundlerEnv {
  name = "riemann-tools-0.2.13";
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

  meta = {
    description = "Tools to submit data to Riemann";
    homepage = "https://riemann.io";
    license = stdenv.lib.licenses.mit;
  };
}