Revert "vde2: support static build"

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