2016-01-12 14:13:38 +00:00
|
|
|
{ stdenv, fetchurl, openssl, libpcap, python }:
|
2011-01-12 13:39:17 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-12-09 11:14:02 +00:00
|
|
|
name = "vde2-2.3.2";
|
2011-01-12 13:39:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/vde/vde2/2.3.1/${name}.tar.gz";
|
2011-12-09 11:14:02 +00:00
|
|
|
sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2";
|
2011-01-12 13:39:17 +00:00
|
|
|
};
|
|
|
|
|
2011-12-09 11:14:02 +00:00
|
|
|
buildInputs = [ openssl libpcap python ];
|
2011-01-12 13:39:17 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2015-06-01 18:55:53 +00:00
|
|
|
meta = {
|
2011-01-12 13:39:17 +00:00
|
|
|
homepage = http://vde.sourceforge.net/;
|
|
|
|
description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-01-12 13:39:17 +00:00
|
|
|
};
|
|
|
|
}
|