mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
37 lines
907 B
Nix
37 lines
907 B
Nix
{ lib, fetchFromGitHub, makeWrapper, buildGoModule, wireshark-cli }:
|
|
|
|
buildGoModule rec {
|
|
pname = "termshark";
|
|
version = "2.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gcla";
|
|
repo = "termshark";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-qq7BDGprRkWKRMJiVnqPeTwtHd3tea9dPE8RIPL2YVI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ wireshark-cli ];
|
|
|
|
vendorHash = "sha256-C9XOiNjo+TZ+erdnypRhhfpbuBhB3yEqNpbtwjEv14g=";
|
|
|
|
doCheck = false;
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/termshark --prefix PATH : ${lib.makeBinPath [ wireshark-cli ]}
|
|
'';
|
|
|
|
ldflags = [
|
|
"-X github.com/gcla/termshark.Version=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://termshark.io/";
|
|
description = "A terminal UI for wireshark-cli, inspired by Wireshark";
|
|
mainProgram = "termshark";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ winpat ];
|
|
};
|
|
}
|