From a24980521229f4e53a746bbfd526ea4af30cdc49 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 20 Oct 2024 16:29:50 +0200 Subject: [PATCH] alice-lg: avoid 'with lib' usage --- pkgs/servers/alice-lg/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/alice-lg/default.nix b/pkgs/servers/alice-lg/default.nix index 8d91f488f479..da96bcc87b30 100644 --- a/pkgs/servers/alice-lg/default.nix +++ b/pkgs/servers/alice-lg/default.nix @@ -38,6 +38,7 @@ buildGoModule rec { yarn fixup-yarn-lock ]; + configurePhase = '' runHook preConfigure @@ -81,12 +82,12 @@ buildGoModule rec { passthru.tests = nixosTests.alice-lg; - meta = with lib; { + meta = { homepage = "https://github.com/alice-lg/alice-lg"; description = "Looking-glass for BGP sessions"; changelog = "https://github.com/alice-lg/alice-lg/blob/main/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ stv0g ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ stv0g ]; mainProgram = "alice-lg"; }; }