udpreplay: init at 1.0.0

+32
+6
maintainers/maintainer-list.nix
··· 2744 2744 githubId = 40290417; 2745 2745 name = "Seb Blair"; 2746 2746 }; 2747 + considerate = { 2748 + email = "viktor.kronvall@gmail.com"; 2749 + github = "considerate"; 2750 + githubId = 217918; 2751 + name = "Viktor Kronvall"; 2752 + }; 2747 2753 copumpkin = { 2748 2754 email = "pumpkingod@gmail.com"; 2749 2755 github = "copumpkin";
+24
pkgs/tools/networking/udpreplay/default.nix
··· 1 + { stdenv, cmake, libpcap, fetchFromGitHub, lib }: 2 + stdenv.mkDerivation rec { 3 + pname = "updreplay"; 4 + version = "1.0.0"; 5 + nativeBuildInputs = [ cmake ]; 6 + buildInputs = [ libpcap ]; 7 + src = fetchFromGitHub { 8 + owner = "rigtorp"; 9 + repo = "udpreplay"; 10 + rev = "v${version}"; 11 + hash = "sha256-8cp1RyVBnq3vx2LPkAx7ktmdLo0bSq9UWlbb/DrJxpc="; 12 + }; 13 + 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 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 12286 12286 12287 12287 udftools = callPackage ../tools/filesystems/udftools {}; 12288 12288 12289 + udpreplay = callPackage ../tools/networking/udpreplay { }; 12290 + 12289 12291 udpt = callPackage ../servers/udpt { }; 12290 12292 12291 12293 udptunnel = callPackage ../tools/networking/udptunnel { };