Skip to content

Commit

Permalink
feat(packages/tracetest): 0.15.4 -> 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelreyrol committed Mar 7, 2024
1 parent 5258df3 commit 59b1b82
Show file tree
Hide file tree
Showing 3 changed files with 36,558 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ prev:
{
otel-collector-builder = prev.callPackage ./otel-collector-builder.nix { };
# Remove when merged: https://github.com/NixOS/nixpkgs/pull/275406
tracetest = prev.callPackage ./tracetest.nix { };
tracetest = prev.callPackage ./tracetest { };
tracepusher = prev.callPackage ./tracepusher { };
har-to-otel = prev.callPackage ./har-to-otel { };
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,21 @@

let
pname = "tracetest";
version = "0.15.4";
version = "0.16.0";
src = fetchFromGitHub {
owner = "kubeshop";
repo = "tracetest";
rev = "v${version}";
hash = "sha256-JOzQvG/10VL8s7D1X1M/lM+QUJlY+6z6NhUIhUhEsWA=";
hash = "sha256-9dU1aATcz6IzNGBLr618V1+bcPNrB9XPghz1Ldb4VLA=";
};
ui = buildNpmPackage {
inherit pname version src;

sourceRoot = "source/web";

npmDepsHash = "sha256-2FhPXNyDBDvRlHawYOF3VRdp9nqacZMi01gboHCkxns=";
patches = [ ./package-lock.patch ];

npmDepsHash = "sha256-JWa9wsZKXLyUB1PzFP+znXiDaBHnz1uW7nsrh1p9kPA=";

npmPackFlags = [ "--ignore-scripts" ];

Expand All @@ -37,7 +39,7 @@ in
buildGoModule rec {
inherit pname version src;

vendorHash = "sha256-tB2arEMG0RCGuPR4QH73wDrAIZxdD0zEvOERoM/FTrw=";
vendorHash = "sha256-Ju7ZNofbS0zmfGDrmCYNvCY6NmjZsxlYY4rQubfnB4I=";

nativeBuildInputs = [ installShellFiles ];

Expand Down
Loading

0 comments on commit 59b1b82

Please sign in to comment.