joincap: init at 0.10.2
This commit is contained in:
parent
efbc68646d
commit
258d84bcd3
2 changed files with 38 additions and 0 deletions
36
pkgs/tools/security/joincap/default.nix
Normal file
36
pkgs/tools/security/joincap/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, libpcap
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "joincap";
|
||||||
|
version = "0.10.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "assafmo";
|
||||||
|
repo = "joincap";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-Xli9G/VkDWKkc+7mldmLfvigvPPcdcToc4e15uoadDQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-YsLIbt3uiA1d08yIEhSRdep1+52AxRvbIzDHlhc5s7Y=";
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libpcap
|
||||||
|
];
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Merge multiple pcap files together, gracefully";
|
||||||
|
homepage = "https://github.com/assafmo/joincap";
|
||||||
|
changelog = "https://github.com/assafmo/joincap/blob/${version}/CHANGELOG.md";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -30423,6 +30423,8 @@ with pkgs;
|
||||||
|
|
||||||
join-desktop = callPackage ../applications/misc/join-desktop { };
|
join-desktop = callPackage ../applications/misc/join-desktop { };
|
||||||
|
|
||||||
|
joincap = callPackage ../tools/security/joincap { };
|
||||||
|
|
||||||
json-plot = callPackage ../applications/graphics/json-plot { };
|
json-plot = callPackage ../applications/graphics/json-plot { };
|
||||||
|
|
||||||
libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix {
|
libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix {
|
||||||
|
|
Loading…
Reference in a new issue