Skip to content

Commit

Permalink
papertrail: 0.10.1 -> 0.11.2 (NixOS#342289)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds committed Sep 20, 2024
2 parents ffe5c6c + 54a555a commit 01e6f3a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/text/papertrail/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GEM
specs:
ansi (1.5.0)
chronic (0.10.2)
papertrail (0.10.1)
papertrail (0.11.2)
ansi (~> 1.5)
chronic (~> 0.10)

Expand All @@ -14,4 +14,4 @@ DEPENDENCIES
papertrail

BUNDLED WITH
2.1.4
2.5.16
4 changes: 3 additions & 1 deletion pkgs/tools/text/papertrail/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, bundlerEnv, ruby, bundlerUpdateScript }:
{ lib, stdenv, bundlerEnv, ruby, bundlerUpdateScript, testers, papertrail }:

let
papertrail-env = bundlerEnv {
Expand All @@ -21,6 +21,8 @@ in stdenv.mkDerivation {

passthru.updateScript = bundlerUpdateScript "papertrail";

passthru.tests.version = testers.testVersion { package = papertrail; };

meta = with lib; {
description = "Command-line client for Papertrail log management service";
mainProgram = "papertrail";
Expand Down
11 changes: 9 additions & 2 deletions pkgs/tools/text/papertrail/gemset.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
ansi = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "14ims9zfal4gs2wpx2m5rd8zsrl2k794d359shkrsgg3fhr2a22l";
Expand All @@ -8,6 +10,8 @@
version = "1.5.0";
};
chronic = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn";
Expand All @@ -16,11 +20,14 @@
version = "0.10.2";
};
papertrail = {
dependencies = ["ansi" "chronic"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0vb7bh7qh5hr4v3w711bl0yrr3rlhz5c3h3qx3fq31dr5y4100v7";
sha256 = "170zhgahrgpwj4cb9xj8104yqcf9gva8qk5vqpmw3g8rq29jxshy";
type = "gem";
};
version = "0.10.1";
version = "0.11.2";
};
}

0 comments on commit 01e6f3a

Please sign in to comment.