nixpkgs/pkgs/servers/bird/default.nix
Shea Levy 6da6accd30
treewide: Remove uses of builtins.toPath.
toPath has confusing semantics and is never necessary; it can always
either just be omitted or replaced by pre-concatenating `/.`. It has
been marked as "!!! obsolete?" for more than 10 years in a C++
comment, hopefully removing it will let us properly deprecate and,
eventually, remove it.
2018-05-22 16:42:02 -04:00

55 lines
1.2 KiB
Nix

{ lib, stdenv, fetchurl, 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")
];
configureFlags = [
"--localstatedir=/var"
] ++ optional enableIPv6 "--enable-ipv6";
meta = {
description = "BIRD Internet Routing Daemon";
homepage = http://bird.network.cz;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ viric fpletz ];
platforms = platforms.linux;
};
};
in
{
bird = generic {
version = "1.6.3";
sha256 = "0z3yrxqb0p7f8b7r2gk4mvrwfzk45zx7yr9aifbvba1vgksiri9r";
};
bird6 = generic {
version = "1.6.3";
sha256 = "0z3yrxqb0p7f8b7r2gk4mvrwfzk45zx7yr9aifbvba1vgksiri9r";
enableIPv6 = true;
};
bird2 = generic {
version = "2.0.2";
sha256 = "03s8hcl761y3489j1krarm3r3iy5qid26508i91yvy38ypb92pq3";
};
}