pb: 0.5.2 -> 0.6.0

This commit is contained in:
Aaron Jheng
2025-02-08 08:55:20 +08:00
parent 9d52b7a886
commit f4684aef57
+6 -11
View File
@@ -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";