bird2: 2.17.2 -> 2.17.3 (#469885)

This commit is contained in:
Nick Cao
2025-12-11 20:42:19 +00:00
committed by GitHub
+6 -6
View File
@@ -10,16 +10,16 @@
nixosTests,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "bird";
version = "2.17.2";
version = "2.17.3";
src = fetchFromGitLab {
domain = "gitlab.nic.cz";
owner = "labs";
repo = "bird";
rev = "v${version}";
hash = "sha256-4kEtSVuEwJIYIk4+OBjBLz72i60TOUKIbvdNKlrcUYM=";
rev = "v${finalAttrs.version}";
hash = "sha256-Uwvb5u12Hwsv0uouEpGQiTgMgprWUpghbwD3TmKBoOM=";
};
nativeBuildInputs = [
@@ -47,11 +47,11 @@ stdenv.mkDerivation rec {
passthru.tests = nixosTests.bird2;
meta = {
changelog = "https://gitlab.nic.cz/labs/bird/-/blob/v${version}/NEWS";
changelog = "https://gitlab.nic.cz/labs/bird/-/blob/v${finalAttrs.version}/NEWS";
description = "BIRD Internet Routing Daemon";
homepage = "https://bird.network.cz";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ herbetom ];
platforms = lib.platforms.linux;
};
}
})