summary refs log tree commit diff
path: root/pkgs/tools/text/papertrail/default.nix
blob: d20727f725a2ab76cfa6780c0dffc6cd7b46c524 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, bundlerEnv, ruby, bundlerUpdateScript }:

let
  papertrail-env = bundlerEnv {
    name = "papertrail-env";
    inherit ruby;
    gemfile = ./Gemfile;
    lockfile = ./Gemfile.lock;
    gemset = ./gemset.nix;
  };
in stdenv.mkDerivation {
  name = "papertrail-${(import ./gemset.nix).papertrail.version}";

  phases = [ "installPhase" ];

  installPhase = ''
    mkdir -p $out/bin
    ln -s ${papertrail-env}/bin/papertrail $out/bin/papertrail
  '';

  passthru.updateScript = bundlerUpdateScript "papertrail";

  meta = with stdenv.lib; {
    description = "Command-line client for Papertrail log management service";
    homepage    = https://github.com/papertrail/papertrail-cli/;
    license     = licenses.mit;
    maintainers = with maintainers; [ nicknovitski ];
    platforms   = ruby.meta.platforms;
  };
}