d82dc5c965
svn path=/nixpkgs/trunk/; revision=25518
18 lines
438 B
Nix
18 lines
438 B
Nix
{ stdenv, fetchurl, openssl, libpcap }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vde2-2.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/vde/vde2/2.3.1/${name}.tar.gz";
|
|
sha256 = "1vbrds8k1cn1fgvpkg2ck2227l5yy2f0qxk44sg3vymq0aiw8y37";
|
|
};
|
|
|
|
buildInputs = [ openssl libpcap ];
|
|
|
|
meta = {
|
|
homepage = http://vde.sourceforge.net/;
|
|
description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
|
|
};
|
|
}
|