1{ stdenv, fetchurl, openssl, libpcap, python }:
2
3stdenv.mkDerivation rec {
4 name = "vde2-2.3.2";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/vde/vde2/2.3.1/${name}.tar.gz";
8 sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2";
9 };
10
11 buildInputs = [ openssl libpcap python ];
12
13 meta = {
14 homepage = http://vde.sourceforge.net/;
15 description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
16 };
17}