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

51 lines
1.5 KiB
Nix
Raw Normal View History

2014-09-02 00:04:17 +01:00
{ stdenv, fetchurl, openssl, python27, iproute, perl, kernel ? null}:
let
2014-06-12 15:08:49 +01:00
version = "2.1.2";
2014-06-12 15:08:49 +01:00
skipKernelMod = kernel == null;
in
stdenv.mkDerivation {
2014-06-12 15:08:49 +01:00
version = "2.1.2";
name = "openvswitch-${version}";
src = fetchurl {
url = "http://openvswitch.org/releases/openvswitch-2.1.2.tar.gz";
sha256 = "16q7faqrj2pfchhn0x5s9ggi5ckcg9n62f6bnqaih064aaq2jm47";
};
kernel = if skipKernelMod then null else kernel.dev;
buildInputs = [
openssl
python27
2014-09-02 00:04:17 +01:00
perl
2014-06-12 15:08:49 +01:00
];
configureFlags = [
"--localstatedir=/var"
"--sharedstatedir=/var"
"--sbindir=$(out)/bin"
] ++ (if skipKernelMod then [] else ["--with-linux"]);
# Leave /var out of this!
installFlags = [
"LOGDIR=$(TMPDIR)/dummy"
"RUNDIR=$(TMPDIR)/dummy"
"PKIDIR=$(TMPDIR)/dummy"
];
meta = {
platforms = stdenv.lib.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 = "http://openvswitch.org/";
licence = "Apache 2.0";
};
}