Merge pull request #179316 from NickCao/bird

authored by Martin Weinelt and committed by GitHub b213d85c 8ad20a50

+3 -7
+3 -7
pkgs/servers/bird/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, flex, bison, readline, libssh, nixosTests }: 1 + { lib, stdenv, fetchurl, flex, bison, readline, libssh, nixosTests }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bird"; 5 - version = "2.0.9"; 5 + version = "2.0.10"; 6 6 7 7 src = fetchurl { 8 - sha256 = "sha256-dnhrvN7TBh4bsiGwEfLMACIewGPenNoASn2bBhoJbV4="; 8 + sha256 = "sha256-ftNB3djch/qXNlhrNRVEeoQ2/sRC1l9AIhVaud4f/Vo="; 9 9 url = "ftp://bird.network.cz/pub/bird/${pname}-${version}.tar.gz"; 10 10 }; 11 11 ··· 14 14 15 15 patches = [ 16 16 ./dont-create-sysconfdir-2.patch 17 - (fetchurl { 18 - url = "https://gitlab.nic.cz/labs/bird/-/commit/fcb4dd0c831339c4374ace17d8f2ae6ebfeed279.patch"; 19 - sha256 = "sha256-PEgpRnOGLa1orHJDEHlblnVhBVv7XOKPR70M1wUMxMQ="; 20 - }) 21 17 ]; 22 18 23 19 CPP="${stdenv.cc.targetPrefix}cpp -E";