d85974bb3c
https://gitlab.labs.nic.cz/labs/bird/blob/v1.6.6/NEWS The patch doesn't need so much context.
64 lines
1.6 KiB
Nix
64 lines
1.6 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, flex, bison, readline }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
generic = { version, sha256, enableIPv6 ? false }:
|
|
stdenv.mkDerivation rec {
|
|
name = "bird-${version}";
|
|
|
|
src = fetchurl {
|
|
inherit sha256;
|
|
url = "ftp://bird.network.cz/pub/bird/${name}.tar.gz";
|
|
};
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
buildInputs = [ readline ];
|
|
|
|
patches = [
|
|
(./. + "/dont-create-sysconfdir-${builtins.substring 0 1 version}.patch")
|
|
]
|
|
++ optional (lib.versionOlder version "2")
|
|
# https://github.com/BIRD/bird/pull/4
|
|
(fetchpatch {
|
|
url = "https://github.com/BIRD/bird/commit/fca9ab48e3823c734886f47156a92f6b804c16e9.patch";
|
|
sha256 = "1pnndc3n56lqqcy74ln0w5kn3i9rbzsm2dqiyp1qw7j33dpkln1b";
|
|
})
|
|
;
|
|
|
|
CPP="${stdenv.cc.targetPrefix}cpp -E";
|
|
|
|
configureFlags = [
|
|
"--localstatedir=/var"
|
|
] ++ optional enableIPv6 "--enable-ipv6";
|
|
|
|
meta = {
|
|
description = "BIRD Internet Routing Daemon";
|
|
homepage = http://bird.network.cz;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
bird = generic {
|
|
version = "1.6.6";
|
|
sha256 = "0w1dmwx89g3qdy92wkjl3p52rn521izm2m8yq74hs7myxxx3nnwp";
|
|
};
|
|
|
|
bird6 = generic {
|
|
version = "1.6.6";
|
|
sha256 = "0w1dmwx89g3qdy92wkjl3p52rn521izm2m8yq74hs7myxxx3nnwp";
|
|
enableIPv6 = true;
|
|
};
|
|
|
|
bird2 = generic {
|
|
version = "2.0.4";
|
|
sha256 = "1phl8ycasbzgla83d9zbzzy1ymjz30k1qh1pmywmjhbxa6vi0q37";
|
|
};
|
|
}
|