nixpkgs/pkgs/tools/networking/tcpreplay/default.nix
R. RyanTM 46533072b5 tcpreplay: 4.2.6 -> 4.3.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tcpreplay/versions
2018-11-17 22:42:19 -08:00

32 lines
882 B
Nix

{ stdenv, fetchurl, libpcap, tcpdump }:
stdenv.mkDerivation rec {
name = "tcpreplay-${version}";
version = "4.3.0";
src = fetchurl {
url = "https://github.com/appneta/tcpreplay/releases/download/v${version}/tcpreplay-${version}.tar.gz";
sha256 = "17y7ga2r9pc0xi2lwg82r4xlmhg5gdn5n1ddlpazzw59hda9yp4k";
};
buildInputs = [ libpcap ];
configureFlags = [
"--disable-local-libopts"
"--disable-libopts-install"
"--enable-dynamic-link"
"--enable-shared"
"--enable-tcpreplay-edit"
"--with-libpcap=${libpcap}"
"--with-tcpdump=${tcpdump}/bin"
];
meta = with stdenv.lib; {
description = "A suite of utilities for editing and replaying network traffic";
homepage = http://tcpreplay.appneta.com/;
license = with licenses; [ bsd3 gpl3 ];
maintainers = with maintainers; [ eleanor ];
platforms = platforms.linux;
};
}