biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / udpreplay / default.nix
blob53147a9fe7a44396fa01f4c14376c7b433e09b94
1 { stdenv, cmake, libpcap, fetchFromGitHub, lib }:
2 stdenv.mkDerivation rec {
3   pname = "updreplay";
4   version = "1.1.0";
5   nativeBuildInputs = [ cmake ];
6   buildInputs = [ libpcap ];
7   src = fetchFromGitHub {
8     owner = "rigtorp";
9     repo = "udpreplay";
10     rev = "v${version}";
11     hash = "sha256-kF9a3pjQbFKf25NKyK7uSq0AAO6JK7QeChLhm9Z3wEA=";
12   };
14   meta = with lib; {
15     description = "Replay UDP packets from a pcap file";
16     longDescription = ''
17       udpreplay is a lightweight alternative to tcpreplay for replaying UDP unicast and multicast streams from a pcap file.
18     '';
19     homepage = "https://github.com/rigtorp/udpreplay";
20     license = licenses.mit;
21     maintainers = [ maintainers.considerate ];
22     platforms = platforms.linux;
23     mainProgram = "udpreplay";
24   };