Revert "vde2: support static build"

This reverts commit fda6c0d3c706f07c53fb2cc01dcd651d8925bcea.
See ee6ca494d2
for related discussion.
This commit is contained in:
Nikolay Amiantov 2016-01-12 17:13:38 +03:00
parent e9597ff555
commit 4a9ad20a95

View File

@ -1,6 +1,4 @@
{ stdenv, fetchurl, openssl, libpcap, python { stdenv, fetchurl, openssl, libpcap, python }:
, enableStatic ? false
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "vde2-2.3.2"; name = "vde2-2.3.2";
@ -12,9 +10,6 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl libpcap python ]; buildInputs = [ openssl libpcap python ];
# Avoid qemu rebuild; feel free to replace with optional
configureFlags = if enableStatic then [ "--enable-static" ] else null;
meta = { meta = {
homepage = http://vde.sourceforge.net/; homepage = http://vde.sourceforge.net/;
description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network"; description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";