2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, pkg-config, util-linux, which
|
2021-03-14 17:05:16 +01:00
|
|
|
, procps, libcap_ng, openssl, python2, perl
|
2019-11-13 01:37:25 +01:00
|
|
|
, automake, autoconf, libtool, kernel ? null }:
|
2018-12-29 11:10:02 +01:00
|
|
|
|
2021-01-15 15:45:37 +01:00
|
|
|
with lib;
|
2018-12-29 11:10:02 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
_kernel = kernel;
|
|
|
|
in stdenv.mkDerivation rec {
|
2021-04-04 19:29:00 +02:00
|
|
|
version = "2.5.12";
|
2018-12-29 11:10:02 +01:00
|
|
|
pname = "openvswitch";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-13 01:37:25 +01:00
|
|
|
url = "https://www.openvswitch.org/releases/${pname}-${version}.tar.gz";
|
2021-04-04 19:29:00 +02:00
|
|
|
sha256 = "0a8wa1lj5p28x3vq0yaxjhqmppp4hvds6hhm0j3czpp8mc09fsfq";
|
2018-12-29 11:10:02 +01:00
|
|
|
};
|
|
|
|
|
2019-11-13 01:37:25 +01:00
|
|
|
patches = [ ./patches/lts-ssl.patch ];
|
|
|
|
|
2018-12-29 11:10:02 +01:00
|
|
|
kernel = optional (_kernel != null) _kernel.dev;
|
|
|
|
|
2021-02-07 10:17:39 +01:00
|
|
|
nativeBuildInputs = [ autoconf libtool automake pkg-config makeWrapper ];
|
|
|
|
buildInputs = [ util-linux openssl libcap_ng python2 perl procps which ];
|
2018-12-29 11:10:02 +01:00
|
|
|
|
2019-11-13 01:37:25 +01:00
|
|
|
preConfigure = "./boot.sh";
|
|
|
|
|
2018-12-29 11:10:02 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sharedstatedir=/var"
|
|
|
|
"--sbindir=$(out)/bin"
|
|
|
|
] ++ (optionals (_kernel != null) ["--with-linux"]);
|
|
|
|
|
|
|
|
# Leave /var out of this!
|
|
|
|
installFlags = [
|
|
|
|
"LOGDIR=$(TMPDIR)/dummy"
|
|
|
|
"RUNDIR=$(TMPDIR)/dummy"
|
|
|
|
"PKIDIR=$(TMPDIR)/dummy"
|
|
|
|
];
|
|
|
|
|
|
|
|
postBuild = ''
|
|
|
|
# fix tests
|
2019-11-13 01:37:25 +01:00
|
|
|
substituteInPlace xenserver/opt_xensource_libexec_interface-reconfigure --replace '/usr/bin/env python' '${python2.interpreter}'
|
|
|
|
substituteInPlace vtep/ovs-vtep --replace '/usr/bin/env python' '${python2.interpreter}'
|
2018-12-29 11:10:02 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = false; # bash-completion test fails with "compgen: command not found"
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
cp debian/ovs-monitor-ipsec $out/share/openvswitch/scripts
|
|
|
|
makeWrapper \
|
|
|
|
$out/share/openvswitch/scripts/ovs-monitor-ipsec \
|
|
|
|
$out/bin/ovs-monitor-ipsec \
|
|
|
|
--prefix PYTHONPATH : "$out/share/openvswitch/python"
|
|
|
|
substituteInPlace $out/share/openvswitch/scripts/ovs-monitor-ipsec \
|
|
|
|
--replace "UnixctlServer.create(None)" "UnixctlServer.create(os.environ['UNIXCTLPATH'])"
|
|
|
|
substituteInPlace $out/share/openvswitch/scripts/ovs-monitor-ipsec \
|
|
|
|
--replace "self.psk_file" "root_prefix + self.psk_file"
|
|
|
|
substituteInPlace $out/share/openvswitch/scripts/ovs-monitor-ipsec \
|
|
|
|
--replace "self.cert_dir" "root_prefix + self.cert_dir"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-12-29 11:10:02 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
description = "A multilayer virtual switch";
|
|
|
|
longDescription =
|
|
|
|
''
|
|
|
|
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
|
|
|
|
to VMware's vNetwork distributed vswitch or Cisco's Nexus 1000V.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.openvswitch.org/";
|
2018-12-29 11:10:02 +01:00
|
|
|
license = licenses.asl20;
|
2019-11-13 01:37:25 +01:00
|
|
|
maintainers = with maintainers; [ netixx kmcopper ];
|
2018-12-29 11:10:02 +01:00
|
|
|
};
|
|
|
|
}
|