summary refs log tree commit diff
path: root/pkgs/tools/networking/vde2/default.nix
blob: 3bf2b05dd56ce195455520e0d81a9c61b28693a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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";
  };
}