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