2018-12-11 11:25:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, flex, bison, readline }:
|
2013-08-31 16:05:24 +01:00
|
|
|
|
2018-02-11 22:28:00 +00:00
|
|
|
with lib;
|
2013-08-31 16:05:24 +01:00
|
|
|
|
2018-02-11 22:28:00 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
generic = { version, sha256, enableIPv6 ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "bird";
|
|
|
|
inherit version;
|
2018-02-11 22:28:00 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
inherit sha256;
|
2019-08-13 22:52:01 +01:00
|
|
|
url = "ftp://bird.network.cz/pub/bird/${pname}-${version}.tar.gz";
|
2018-02-11 22:28:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
|
|
buildInputs = [ readline ];
|
|
|
|
|
|
|
|
patches = [
|
2018-05-22 21:42:02 +01:00
|
|
|
(./. + "/dont-create-sysconfdir-${builtins.substring 0 1 version}.patch")
|
2019-01-06 13:26:03 +00:00
|
|
|
]
|
|
|
|
++ optional (lib.versionOlder version "2")
|
2018-12-11 11:25:13 +00:00
|
|
|
# https://github.com/BIRD/bird/pull/4
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/BIRD/bird/commit/fca9ab48e3823c734886f47156a92f6b804c16e9.patch";
|
|
|
|
sha256 = "1pnndc3n56lqqcy74ln0w5kn3i9rbzsm2dqiyp1qw7j33dpkln1b";
|
|
|
|
})
|
2019-01-06 13:26:03 +00:00
|
|
|
;
|
2013-08-31 16:05:24 +01:00
|
|
|
|
2018-12-11 11:25:13 +00:00
|
|
|
CPP="${stdenv.cc.targetPrefix}cpp -E";
|
|
|
|
|
2018-02-11 22:28:00 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
] ++ optional enableIPv6 "--enable-ipv6";
|
2013-08-31 16:05:24 +01:00
|
|
|
|
2018-02-11 22:28:00 +00:00
|
|
|
meta = {
|
|
|
|
description = "BIRD Internet Routing Daemon";
|
|
|
|
homepage = http://bird.network.cz;
|
|
|
|
license = licenses.gpl2Plus;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ fpletz globin ];
|
2018-02-11 22:28:00 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
};
|
2015-05-16 22:22:35 +01:00
|
|
|
|
2018-02-11 22:28:00 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
bird = generic {
|
2019-03-07 10:33:10 +00:00
|
|
|
version = "1.6.6";
|
|
|
|
sha256 = "0w1dmwx89g3qdy92wkjl3p52rn521izm2m8yq74hs7myxxx3nnwp";
|
2018-02-11 22:28:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bird6 = generic {
|
2019-03-07 10:33:10 +00:00
|
|
|
version = "1.6.6";
|
|
|
|
sha256 = "0w1dmwx89g3qdy92wkjl3p52rn521izm2m8yq74hs7myxxx3nnwp";
|
2018-02-11 22:28:00 +00:00
|
|
|
enableIPv6 = true;
|
|
|
|
};
|
2015-05-16 22:22:35 +01:00
|
|
|
|
2018-02-11 22:28:00 +00:00
|
|
|
bird2 = generic {
|
2019-09-26 07:56:20 +01:00
|
|
|
version = "2.0.6";
|
|
|
|
sha256 = "1ankpxvmn12kzgv5vh7awnkj34jzjciy5baq3smkj079db74r4wh";
|
2013-08-31 16:05:24 +01:00
|
|
|
};
|
|
|
|
}
|