Unverified Commit 618c33dd authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

logdy: 0.13.1 -> 0.16.0 (#388263)

parents 5dcaeaa0 fcb734c1
Loading
Loading
Loading
Loading
+16 −6
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@

buildGoModule rec {
  pname = "logdy";
  version = "0.13.1";
  version = "0.16.0";

  src = fetchFromGitHub {
    owner = "logdyhq";
    repo = "logdy-core";
    rev = "v${version}";
    hash = "sha256-lLQM9/QD/vB/KjyzSxVJzSMw0SQWyv/1qXbBBXatnCg=";
    tag = "v${version}";
    hash = "sha256-OpG9jgm/A++PBDQH5IYY6PyXx87QvihyZqnwhdBWZGg=";
  };

  vendorHash = "sha256-kFhcbBMymzlJ+2zw7l09LJfCdps26Id+VzOehqrLDWU=";
@@ -38,9 +38,19 @@ buildGoModule rec {
      --zsh <($out/bin/logdy completion zsh)
  '';

  checkFlags = [
    "-skip=^TestClientLoad$" # index out of range
  checkFlags =
    let
      skippedTests = [
        "TestClientLoad" # index out of range
        "TestLogdyE2E_(No|Stdin)Command" # hang forever
      ];
    in
    [
      "-timeout=60s" # assume the test is hanging
      "-skip=^${lib.concatStringsSep "|" skippedTests}$"
    ];

  __darwinAllowLocalNetworking = true;

  meta = {
    description = "Web based real-time log viewer";