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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, pkg-config, util-linux, which
, procps, libcap_ng, openssl, python3 , perl
2016-05-28 15:02:04 +01:00
, kernel ? null }:
2021-01-15 14:45:37 +00:00
with lib;
let
_kernel = kernel;
pythonEnv = python3.withPackages (ps: with ps; [ six ]);
in stdenv.mkDerivation rec {
2022-02-22 02:33:51 +00:00
version = "2.17.0";
pname = "openvswitch";
2014-06-12 15:08:49 +01:00
src = fetchurl {
url = "https://www.openvswitch.org/releases/${pname}-${version}.tar.gz";
2022-02-22 02:33:51 +00:00
sha256 = "sha256-4Dv6t8qC2Bp9OjbeTzkKO1IQ4/OWV2cfkih3zU6m3HM=";
2014-06-12 15:08:49 +01:00
};
kernel = optional (_kernel != null) _kernel.dev;
nativeBuildInputs = [ pkg-config makeWrapper ];
buildInputs = [ 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"
meta = with 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
};
}