mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
32 lines
872 B
Nix
32 lines
872 B
Nix
{ stdenv, fetchurl, libpcap, tcpdump }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tcpreplay";
|
|
version = "4.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/appneta/tcpreplay/releases/download/v${version}/tcpreplay-${version}.tar.gz";
|
|
sha256 = "0ld9v88g5xs2rykimksmhlkwbv2r97575c4aqmqdxbvc37crnisg";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|