tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
udpreplay: init at 1.0.0
Viktor Kronvall
3 years ago
f552429c
00d58bc6
+32
3 changed files
expand all
collapse all
unified
split
maintainers
maintainer-list.nix
pkgs
tools
networking
udpreplay
default.nix
top-level
all-packages.nix
+6
maintainers/maintainer-list.nix
···
2744
2744
githubId = 40290417;
2745
2745
name = "Seb Blair";
2746
2746
};
2747
2747
+
considerate = {
2748
2748
+
email = "viktor.kronvall@gmail.com";
2749
2749
+
github = "considerate";
2750
2750
+
githubId = 217918;
2751
2751
+
name = "Viktor Kronvall";
2752
2752
+
};
2747
2753
copumpkin = {
2748
2754
email = "pumpkingod@gmail.com";
2749
2755
github = "copumpkin";
+24
pkgs/tools/networking/udpreplay/default.nix
···
1
1
+
{ stdenv, cmake, libpcap, fetchFromGitHub, lib }:
2
2
+
stdenv.mkDerivation rec {
3
3
+
pname = "updreplay";
4
4
+
version = "1.0.0";
5
5
+
nativeBuildInputs = [ cmake ];
6
6
+
buildInputs = [ libpcap ];
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "rigtorp";
9
9
+
repo = "udpreplay";
10
10
+
rev = "v${version}";
11
11
+
hash = "sha256-8cp1RyVBnq3vx2LPkAx7ktmdLo0bSq9UWlbb/DrJxpc=";
12
12
+
};
13
13
+
14
14
+
meta = with lib; {
15
15
+
description = "Replay UDP packets from a pcap file";
16
16
+
longDescription = ''
17
17
+
udpreplay is a lightweight alternative to tcpreplay for replaying UDP unicast and multicast streams from a pcap file.
18
18
+
'';
19
19
+
homepage = "https://github.com/rigtorp/udpreplay";
20
20
+
license = licenses.mit;
21
21
+
maintainers = [ maintainers.considerate ];
22
22
+
platforms = platforms.linux;
23
23
+
};
24
24
+
}
+2
pkgs/top-level/all-packages.nix
···
12286
12286
12287
12287
udftools = callPackage ../tools/filesystems/udftools {};
12288
12288
12289
12289
+
udpreplay = callPackage ../tools/networking/udpreplay { };
12290
12290
+
12289
12291
udpt = callPackage ../servers/udpt { };
12290
12292
12291
12293
udptunnel = callPackage ../tools/networking/udptunnel { };