bird6: bird build with IPv6 support
This commit is contained in:
parent
79c655c4c8
commit
2f09407a91
@ -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";
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user