2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-25 06:13:54 +00:00
nixpkgs/pkgs/tools/misc/riemann-tools/default.nix
Pascal Wittmann 934c71f806
riemann-tools: add meta-data
see issue 
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;
};
}