nixpkgs/pkgs/servers/bird/default.nix

30 lines
732 B
Nix
Raw Normal View History

2016-06-19 11:44:23 -07:00
{ stdenv, fetchurl, flex, bison, readline
, enableIPv6 ? false }:
2013-08-31 08:05:24 -07:00
stdenv.mkDerivation rec {
2016-12-22 16:15:24 -08:00
name = "bird-1.6.3";
2013-08-31 08:05:24 -07:00
src = fetchurl {
url = "ftp://bird.network.cz/pub/bird/${name}.tar.gz";
2016-12-22 16:15:24 -08:00
sha256 = "0z3yrxqb0p7f8b7r2gk4mvrwfzk45zx7yr9aifbvba1vgksiri9r";
2013-08-31 08:05:24 -07:00
};
buildInputs = [ flex bison readline ];
patches = [
./dont-create-sysconfdir.patch
];
configureFlags = [
"--localstatedir /var"
2016-06-19 11:44:23 -07:00
] ++ stdenv.lib.optional enableIPv6 "--enable-ipv6";
2013-08-31 08:05:24 -07:00
meta = {
2014-11-11 11:27:21 -08:00
description = "BIRD Internet Routing Daemon";
2013-08-31 08:05:24 -07:00
homepage = http://bird.network.cz;
license = stdenv.lib.licenses.gpl2Plus;
2016-06-19 11:43:59 -07:00
maintainers = with stdenv.lib.maintainers; [ viric fpletz ];
2014-11-11 11:27:21 -08:00
platforms = stdenv.lib.platforms.linux;
2013-08-31 08:05:24 -07:00
};
}