Skip to content

Commit ece3723

Browse files
authored
joincap: 0.10.2 -> 0.11.0 (#356060)
2 parents 56e653c + a41a81b commit ece3723

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed
Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
1-
{ lib
2-
, buildGoModule
3-
, fetchFromGitHub
4-
, libpcap
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
libpcap,
56
}:
67

78
buildGoModule rec {
89
pname = "joincap";
9-
version = "0.10.2";
10+
version = "0.11.0";
1011

1112
src = fetchFromGitHub {
1213
owner = "assafmo";
1314
repo = "joincap";
14-
rev = "v${version}";
15-
hash = "sha256-Xli9G/VkDWKkc+7mldmLfvigvPPcdcToc4e15uoadDQ=";
15+
rev = "refs/tags/v${version}";
16+
hash = "sha256-HvqtAno26ZSggiXbQpkw5ghxCrmmLb5uDdeSQ2QVeq0=";
1617
};
1718

18-
vendorHash = "sha256-YsLIbt3uiA1d08yIEhSRdep1+52AxRvbIzDHlhc5s7Y=";
19+
vendorHash = "sha256-pIu/f7hpSUJG5az7sV9tlXJfIjVT37bTV49kTkR80ek=";
1920

20-
buildInputs = [
21-
libpcap
22-
];
21+
buildInputs = [ libpcap ];
2322

2423
ldflags = [
2524
"-s"
@@ -28,10 +27,10 @@ buildGoModule rec {
2827

2928
meta = with lib; {
3029
description = "Merge multiple pcap files together, gracefully";
31-
mainProgram = "joincap";
3230
homepage = "https://github.com/assafmo/joincap";
33-
changelog = "https://github.com/assafmo/joincap/blob/${version}/CHANGELOG.md";
31+
changelog = "https://github.com/assafmo/joincap/blob/v${version}/CHANGELOG.md";
3432
license = licenses.mit;
3533
maintainers = with maintainers; [ fab ];
34+
mainProgram = "joincap";
3635
};
3736
}

0 commit comments

Comments
 (0)