depot/third_party/nixpkgs/pkgs/by-name/bi/bird/package.nix

51 lines
943 B
Nix

{
lib,
stdenv,
fetchurl,
flex,
bison,
readline,
libssh,
nixosTests,
}:
stdenv.mkDerivation rec {
pname = "bird";
version = "2.16";
src = fetchurl {
url = "ftp://bird.network.cz/pub/bird/${pname}-${version}.tar.gz";
hash = "sha256-ZikRApOvbxcnlnEh1k+cjclO1hgcTvix3FHH/dZphxw=";
};
nativeBuildInputs = [
flex
bison
];
buildInputs = [
readline
libssh
];
patches = [
./dont-create-sysconfdir-2.patch
];
CPP = "${stdenv.cc.targetPrefix}cpp -E";
configureFlags = [
"--localstatedir=/var"
"--runstatedir=/run/bird"
];
passthru.tests = nixosTests.bird;
meta = with lib; {
changelog = "https://gitlab.nic.cz/labs/bird/-/blob/v${version}/NEWS";
description = "BIRD Internet Routing Daemon";
homepage = "http://bird.network.cz";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ herbetom ];
platforms = platforms.linux;
};
}