2022-01-25 14:15:52 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, flex, bison, readline, libssh, nixosTests }:
|
2013-08-31 16:05:24 +01:00
|
|
|
|
2022-02-21 08:21:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "bird";
|
|
|
|
version = "2.0.9";
|
2013-08-31 16:05:24 +01:00
|
|
|
|
2022-02-21 08:21:12 +00:00
|
|
|
src = fetchurl {
|
|
|
|
sha256 = "sha256-dnhrvN7TBh4bsiGwEfLMACIewGPenNoASn2bBhoJbV4=";
|
|
|
|
url = "ftp://bird.network.cz/pub/bird/${pname}-${version}.tar.gz";
|
|
|
|
};
|
2013-08-31 16:05:24 +01:00
|
|
|
|
2022-02-21 08:21:12 +00:00
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
|
|
buildInputs = [ readline libssh ];
|
2022-01-25 14:15:52 +00:00
|
|
|
|
2022-02-21 08:21:12 +00:00
|
|
|
patches = [
|
2022-02-27 06:51:45 +00:00
|
|
|
./dont-create-sysconfdir-2.patch
|
|
|
|
(fetchurl {
|
|
|
|
url = "https://gitlab.nic.cz/labs/bird/-/commit/fcb4dd0c831339c4374ace17d8f2ae6ebfeed279.patch";
|
|
|
|
sha256 = "sha256-PEgpRnOGLa1orHJDEHlblnVhBVv7XOKPR70M1wUMxMQ=";
|
|
|
|
})
|
2022-02-21 08:21:12 +00:00
|
|
|
];
|
2015-05-16 22:22:35 +01:00
|
|
|
|
2022-02-21 08:21:12 +00:00
|
|
|
CPP="${stdenv.cc.targetPrefix}cpp -E";
|
2018-02-11 22:28:00 +00:00
|
|
|
|
2022-02-21 08:21:12 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
2022-02-23 06:10:02 +00:00
|
|
|
"--runstatedir=/run/bird"
|
2022-02-21 08:21:12 +00:00
|
|
|
];
|
2018-02-11 22:28:00 +00:00
|
|
|
|
2022-02-21 08:21:12 +00:00
|
|
|
passthru.tests = nixosTests.bird;
|
2015-05-16 22:22:35 +01:00
|
|
|
|
2022-02-21 08:21:12 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "BIRD Internet Routing Daemon";
|
|
|
|
homepage = "http://bird.network.cz";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ fpletz globin ];
|
|
|
|
platforms = platforms.linux;
|
2013-08-31 16:05:24 +01:00
|
|
|
};
|
|
|
|
}
|