nixpkgs/pkgs/tools/networking/vde2/default.nix
Eelco Dolstra 5ce6bf04f2 * vde2 updated to 2.3.2.
svn path=/nixpkgs/trunk/; revision=30804
2011-12-09 11:14:02 +00:00

18 lines
453 B
Nix

{ stdenv, fetchurl, openssl, libpcap, python }:
stdenv.mkDerivation rec {
name = "vde2-2.3.2";
src = fetchurl {
url = "mirror://sourceforge/vde/vde2/2.3.1/${name}.tar.gz";
sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2";
};
buildInputs = [ openssl libpcap python ];
meta = {
homepage = http://vde.sourceforge.net/;
description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
};
}