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

66 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, makeWrapper
, openssl, python27, iproute, perl, kernel ? null }:
with stdenv.lib;
let
_kernel = kernel;
in stdenv.mkDerivation rec {
version = "2.3.1";
2014-06-12 14:08:49 +00:00
name = "openvswitch-${version}";
2014-06-12 14:08:49 +00:00
src = fetchurl {
url = "http://openvswitch.org/releases/${name}.tar.gz";
sha256 = "1lmwyhm5wmdv1l4v1v5xd36d5ra21jz9ix57nh1lgm8iqc0lj5r1";
2014-06-12 14:08:49 +00:00
};
kernel = optional (_kernel != null) _kernel.dev;
buildInputs = [ makeWrapper openssl python27 perl ];
2014-06-12 14:08:49 +00:00
configureFlags = [
"--localstatedir=/var"
"--sharedstatedir=/var"
"--sbindir=$(out)/bin"
] ++ (optionals (_kernel != null) ["--with-linux"]);
2014-06-12 14:08:49 +00:00
# Leave /var out of this!
installFlags = [
"LOGDIR=$(TMPDIR)/dummy"
"RUNDIR=$(TMPDIR)/dummy"
"PKIDIR=$(TMPDIR)/dummy"
];
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"
'';
2015-05-30 13:14:10 +00:00
meta = with stdenv.lib; {
platforms = platforms.linux;
2014-06-12 14:08:49 +00:00
description = "A multilayer virtual switch";
longDescription =
2014-06-12 14:08:49 +00: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 14:08:49 +00:00
to VMware's vNetwork distributed vswitch or Cisco's Nexus 1000V.
'';
homepage = "http://openvswitch.org/";
2015-05-30 13:14:10 +00:00
license = licenses.asl20;
2014-06-12 14:08:49 +00:00
};
}