9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
66 lines
2.1 KiB
Nix
66 lines
2.1 KiB
Nix
{ lib, stdenv, fetchurl, makeWrapper, pkg-config, util-linux, which
|
|
, procps, libcap_ng, openssl, python3 , perl
|
|
, kernel ? null }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
_kernel = kernel;
|
|
pythonEnv = python3.withPackages (ps: with ps; [ six ]);
|
|
in stdenv.mkDerivation rec {
|
|
version = "2.14.0";
|
|
pname = "openvswitch";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.openvswitch.org/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "0q52k6mq1jfsv0ix55mjd5ljlalhklhqfrma3l61dzhgihmfawa1";
|
|
};
|
|
|
|
kernel = optional (_kernel != null) _kernel.dev;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ makeWrapper util-linux openssl libcap_ng pythonEnv
|
|
perl procps which ];
|
|
|
|
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
|
|
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}'
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
doCheck = false; # bash-completion test fails with "compgen: command not found"
|
|
|
|
meta = with lib; {
|
|
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.
|
|
'';
|
|
homepage = "https://www.openvswitch.org/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ netixx kmcopper ];
|
|
};
|
|
}
|