2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, pkgconfig, util-linux, which
|
2019-11-13 00:37:25 +00:00
|
|
|
, procps, libcap_ng, openssl, python3 , perl
|
2016-05-28 15:02:04 +01:00
|
|
|
, kernel ? null }:
|
2014-06-12 14:16:38 +01:00
|
|
|
|
2015-04-25 14:33:08 +01:00
|
|
|
with stdenv.lib;
|
2014-06-12 14:16:38 +01:00
|
|
|
|
2015-04-25 14:33:08 +01:00
|
|
|
let
|
|
|
|
_kernel = kernel;
|
2019-11-13 00:37:25 +00:00
|
|
|
pythonEnv = python3.withPackages (ps: with ps; [ six ]);
|
2015-04-25 14:33:08 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2020-08-26 20:58:53 +01:00
|
|
|
version = "2.14.0";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "openvswitch";
|
2015-04-25 14:33:08 +01:00
|
|
|
|
2014-06-12 15:08:49 +01:00
|
|
|
src = fetchurl {
|
2019-11-13 00:37:25 +00:00
|
|
|
url = "https://www.openvswitch.org/releases/${pname}-${version}.tar.gz";
|
2020-08-26 20:58:53 +01:00
|
|
|
sha256 = "0q52k6mq1jfsv0ix55mjd5ljlalhklhqfrma3l61dzhgihmfawa1";
|
2014-06-12 15:08:49 +01:00
|
|
|
};
|
2015-04-25 14:33:08 +01:00
|
|
|
|
|
|
|
kernel = optional (_kernel != null) _kernel.dev;
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2020-11-24 15:29:28 +00:00
|
|
|
buildInputs = [ makeWrapper util-linux openssl libcap_ng pythonEnv
|
2016-05-28 15:02:04 +01:00
|
|
|
perl procps which ];
|
2015-04-25 14:33:08 +01:00
|
|
|
|
2014-06-12 15:08:49 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sharedstatedir=/var"
|
|
|
|
"--sbindir=$(out)/bin"
|
2015-04-25 14:33:08 +01:00
|
|
|
] ++ (optionals (_kernel != null) ["--with-linux"]);
|
|
|
|
|
2014-06-12 15:08:49 +01:00
|
|
|
# Leave /var out of this!
|
|
|
|
installFlags = [
|
|
|
|
"LOGDIR=$(TMPDIR)/dummy"
|
|
|
|
"RUNDIR=$(TMPDIR)/dummy"
|
|
|
|
"PKIDIR=$(TMPDIR)/dummy"
|
|
|
|
];
|
2015-04-25 14:33:08 +01:00
|
|
|
|
2016-05-28 15:02:04 +01:00
|
|
|
postBuild = ''
|
|
|
|
# fix tests
|
2019-11-13 00:37:25 +00: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 15:02:04 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = false; # bash-completion test fails with "compgen: command not found"
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-04-25 14:33:08 +01:00
|
|
|
platforms = platforms.linux;
|
2014-06-12 15:08:49 +01:00
|
|
|
description = "A multilayer virtual switch";
|
2015-04-25 14:33:08 +01:00
|
|
|
longDescription =
|
2014-06-12 15:08:49 +01:00
|
|
|
''
|
2015-04-25 14:33:08 +01: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 15:08:49 +01:00
|
|
|
to VMware's vNetwork distributed vswitch or Cisco's Nexus 1000V.
|
|
|
|
'';
|
2020-03-07 00:57:21 +00:00
|
|
|
homepage = "https://www.openvswitch.org/";
|
2015-05-30 14:14:10 +01:00
|
|
|
license = licenses.asl20;
|
2019-11-13 00:37:25 +00:00
|
|
|
maintainers = with maintainers; [ netixx kmcopper ];
|
2014-06-12 15:08:49 +01:00
|
|
|
};
|
2014-06-12 14:16:38 +01:00
|
|
|
}
|