nixpkgs/pkgs/tools/misc/riemann-tools/default.nix
Pascal Wittmann 934c71f806
riemann-tools: add meta-data
see issue #43716
2018-08-06 12:29:24 +02:00

15 lines
296 B
Nix

{ 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;
};
}