2016-05-28 16:02:04 +02:00
|
|
|
{ stdenv, fetchurl, makeWrapper, pkgconfig, utillinux, which
|
2019-11-13 01:37:25 +01:00
|
|
|
, procps, libcap_ng, openssl, python3 , perl
|
2016-05-28 16:02:04 +02:00
|
|
|
, kernel ? null }:
|
2014-06-12 15:16:38 +02:00
|
|
|
|
2015-04-25 15:33:08 +02:00
|
|
|
with stdenv.lib;
|
2014-06-12 15:16:38 +02:00
|
|
|
|
2015-04-25 15:33:08 +02:00
|
|
|
let
|
|
|
|
_kernel = kernel;
|
2019-11-13 01:37:25 +01:00
|
|
|
pythonEnv = python3.withPackages (ps: with ps; [ six ]);
|
2015-04-25 15:33:08 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
2018-12-29 11:10:02 +01:00
|
|
|
version = "2.12.0";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "openvswitch";
|
2015-04-25 15:33:08 +02:00
|
|
|
|
2014-06-12 16:08:49 +02:00
|
|
|
src = fetchurl {
|
2019-11-13 01:37:25 +01:00
|
|
|
url = "https://www.openvswitch.org/releases/${pname}-${version}.tar.gz";
|
2018-12-29 11:10:02 +01:00
|
|
|
sha256 = "1y78ix5inhhcvicbvyy2ij38am1215nr55vydhab3d4065q45z8k";
|
2014-06-12 16:08:49 +02:00
|
|
|
};
|
2015-04-25 15:33:08 +02:00
|
|
|
|
|
|
|
kernel = optional (_kernel != null) _kernel.dev;
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-11-13 01:37:25 +01:00
|
|
|
buildInputs = [ makeWrapper utillinux openssl libcap_ng pythonEnv
|
2016-05-28 16:02:04 +02:00
|
|
|
perl procps which ];
|
2015-04-25 15:33:08 +02:00
|
|
|
|
2014-06-12 16:08:49 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sharedstatedir=/var"
|
|
|
|
"--sbindir=$(out)/bin"
|
2015-04-25 15:33:08 +02:00
|
|
|
] ++ (optionals (_kernel != null) ["--with-linux"]);
|
|
|
|
|
2014-06-12 16:08:49 +02:00
|
|
|
# Leave /var out of this!
|
|
|
|
installFlags = [
|
|
|
|
"LOGDIR=$(TMPDIR)/dummy"
|
|
|
|
"RUNDIR=$(TMPDIR)/dummy"
|
|
|
|
"PKIDIR=$(TMPDIR)/dummy"
|
|
|
|
];
|
2015-04-25 15:33:08 +02:00
|
|
|
|
2016-05-28 16:02:04 +02:00
|
|
|
postBuild = ''
|
|
|
|
# fix tests
|
2019-11-13 01:37:25 +01:00
|
|
|
substituteInPlace xenserver/opt_xensource_libexec_interface-reconfigure --replace '/usr/bin/env python' '${pythonEnv.interpreter}'
|
|
|
|
substituteInPlace vtep/ovs-vtep --replace '/usr/bin/env python' '${pythonEnv.interpreter}'
|
2016-05-28 16:02:04 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = false; # bash-completion test fails with "compgen: command not found"
|
|
|
|
|
2015-05-30 15:14:10 +02:00
|
|
|
meta = with stdenv.lib; {
|
2015-04-25 15:33:08 +02:00
|
|
|
platforms = platforms.linux;
|
2014-06-12 16:08:49 +02:00
|
|
|
description = "A multilayer virtual switch";
|
2015-04-25 15:33:08 +02:00
|
|
|
longDescription =
|
2014-06-12 16:08:49 +02:00
|
|
|
''
|
2015-04-25 15:33:08 +02:00
|
|
|
Open vSwitch is a production quality, multilayer virtual switch
|
|
|
|
licensed under the open source Apache 2.0 license. It is
|
|
|
|
designed to enable massive network automation through
|
|
|
|
programmatic extension, while still supporting standard
|
|
|
|
management interfaces and protocols (e.g. NetFlow, sFlow, SPAN,
|
|
|
|
RSPAN, CLI, LACP, 802.1ag). In addition, it is designed to
|
|
|
|
support distribution across multiple physical servers similar
|
2014-06-12 16:08:49 +02:00
|
|
|
to VMware's vNetwork distributed vswitch or Cisco's Nexus 1000V.
|
|
|
|
'';
|
2019-11-13 01:37:25 +01:00
|
|
|
homepage = https://www.openvswitch.org/;
|
2015-05-30 15:14:10 +02:00
|
|
|
license = licenses.asl20;
|
2019-11-13 01:37:25 +01:00
|
|
|
maintainers = with maintainers; [ netixx kmcopper ];
|
2014-06-12 16:08:49 +02:00
|
|
|
};
|
2014-06-12 15:16:38 +02:00
|
|
|
}
|