nixpkgs/pkgs/os-specific/linux/openvswitch/default.nix

66 lines
2.1 KiB
Nix
Raw Normal View History

2020-11-24 15:29:28 +00:00
{ stdenv, fetchurl, makeWrapper, pkgconfig, util-linux, which
, procps, libcap_ng, openssl, python3 , perl
2016-05-28 15:02:04 +01:00
, kernel ? null }:
with stdenv.lib;
let
_kernel = kernel;
pythonEnv = python3.withPackages (ps: with ps; [ six ]);
in stdenv.mkDerivation rec {
2020-08-26 20:58:53 +01:00
version = "2.14.0";
pname = "openvswitch";
2014-06-12 15:08:49 +01:00
src = fetchurl {
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
};
kernel = optional (_kernel != null) _kernel.dev;
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 ];
2014-06-12 15:08:49 +01:00
configureFlags = [
"--localstatedir=/var"
"--sharedstatedir=/var"
"--sbindir=$(out)/bin"
] ++ (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"
];
2016-05-28 15:02:04 +01:00
postBuild = ''
# fix tests
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"
2015-05-30 14:14:10 +01:00
meta = with stdenv.lib; {
platforms = platforms.linux;
2014-06-12 15:08:49 +01:00
description = "A multilayer virtual switch";
longDescription =
2014-06-12 15:08:49 +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;
maintainers = with maintainers; [ netixx kmcopper ];
2014-06-12 15:08:49 +01:00
};
}