bird 2.13.1 -> 2.14 https://repology.org/project/bird/versions attrpath: bird Checking auto update branch... No auto update branch exists Old version 2.13.1" not present in master derivation file with contents: { lib, stdenv, fetchurl, flex, bison, readline, libssh, nixosTests }: stdenv.mkDerivation rec { pname = "bird"; version = "2.14"; src = fetchurl { url = "ftp://bird.network.cz/pub/bird/${pname}-${version}.tar.gz"; hash = "sha256-sLn2+FZlQbm+SvHwysZ1xaN4VgGlVmen7D194pc1p4Y="; }; 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; [ globin ]; platforms = platforms.linux; }; }