bird6: bird build with IPv6 support

This commit is contained in:
Franz Pletz 2016-06-19 20:44:23 +02:00
parent 79c655c4c8
commit 2f09407a91
2 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,5 @@
{ stdenv, fetchurl, flex, bison, readline }:
{ stdenv, fetchurl, flex, bison, readline
, enableIPv6 ? false }:
stdenv.mkDerivation rec {
name = "bird-1.6.0";
@ -16,7 +17,7 @@ stdenv.mkDerivation rec {
configureFlags = [
"--localstatedir /var"
];
] ++ stdenv.lib.optional enableIPv6 "--enable-ipv6";
meta = {
description = "BIRD Internet Routing Daemon";

View file

@ -9871,6 +9871,7 @@ in
bind = callPackage ../servers/dns/bind { };
bird = callPackage ../servers/bird { };
bird6 = bird.override { enableIPv6 = true; };
bosun = (callPackage ../servers/monitoring/bosun { }).bin // { outputs = [ "bin" ]; };
scollector = bosun;