1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* Added vde2 (Virtual Distributed Ethernet).

svn path=/nixpkgs/trunk/; revision=25518
This commit is contained in:
Eelco Dolstra 2011-01-12 13:39:17 +00:00
parent f9c5b90489
commit d82dc5c965
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ 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";
};
}

View file

@ -1305,6 +1305,8 @@ let
inherit pciutils libx86 zlib;
};
vde2 = callPackage ../tools/networking/vde2 { };
verilog = callPackage ../applications/science/electronics/verilog {};
viking = callPackage ../applications/misc/viking { };