peering-manager: add meta section

This commit is contained in:
Yureka 2023-07-12 18:30:55 +02:00
parent ca3e61984e
commit 1611394719

View file

@ -2,6 +2,7 @@
, fetchFromGitHub
, fetchpatch
, nixosTests
, lib
, plugins ? ps: []
}:
@ -93,4 +94,12 @@ in py.pkgs.buildPythonApplication rec {
inherit (nixosTests) peering-manager;
};
};
meta = with lib; {
homepage = "https://peering-manager.net/";
license = licenses.asl20;
description = "BGP sessions management tool";
maintainers = with maintainers; [ yuka ];
platforms = platforms.linux;
};
}