Unverified Commit 906e99a7 authored by Bruno BELANYI's avatar Bruno BELANYI Committed by GitHub
Browse files

pb: 0.5.2 -> 0.6.0 (#378430)

parents 185337e4 f4684aef
Loading
Loading
Loading
Loading
+6 −11
Original line number Diff line number Diff line
@@ -2,22 +2,20 @@
  lib,
  buildGoModule,
  fetchFromGitHub,
  testers,
  pb,
}:

buildGoModule rec {
  pname = "pb";
  version = "0.5.2";
  version = "0.6.0";

  src = fetchFromGitHub {
    owner = "parseablehq";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-KedO/ngAlabuf3/NPKhutnzLphz6/VxJ+XJvADIP3PQ=";
    repo = "pb";
    tag = "v${version}";
    hash = "sha256-OXxLHi7v/xJZVvxHZvJ0eH4MYrlLFxDAMT9CVG2mWTM=";
  };

  vendorHash = "sha256-RAb2OvN3DF54fsVI5tRtNp1BYwB2qfYome7tj8zxxCY=";
  vendorHash = "sha256-N6m0qvj65Ls3yQmVGw0AklsO1zs1KHdi/Y6FZRghnCs=";

  ldflags = [
    "-s"
@@ -27,10 +25,7 @@ buildGoModule rec {

  tags = [ "kqueue" ];

  passthru.tests.version = testers.testVersion {
    package = pb;
    command = "pb version";
  };
  # Version test has been removed since it requires network access.

  meta = {
    homepage = "https://github.com/parseablehq/pb";